summaryrefslogtreecommitdiff
path: root/platform/android/example
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2016-07-06 21:13:36 +0200
committerTor Andersson <tor.andersson@artifex.com>2016-07-08 12:04:50 +0200
commit93456e1c3f9bd3edfc5b03d317b36b902b01b6da (patch)
treee2c9f10e09346cf81200e3685398aeeee0d6fe23 /platform/android/example
parentf2f265502f3a2d333b3041de30da86f9e4a23e61 (diff)
downloadmupdf-93456e1c3f9bd3edfc5b03d317b36b902b01b6da.tar.xz
android: Fix mixed tabs/spaces in DocViewActivity.java.
Diffstat (limited to 'platform/android/example')
-rw-r--r--platform/android/example/app/src/main/java/com/artifex/mupdf/example/DocViewActivity.java11
1 files changed, 5 insertions, 6 deletions
diff --git a/platform/android/example/app/src/main/java/com/artifex/mupdf/example/DocViewActivity.java b/platform/android/example/app/src/main/java/com/artifex/mupdf/example/DocViewActivity.java
index 32f2cecd..c503a85a 100644
--- a/platform/android/example/app/src/main/java/com/artifex/mupdf/example/DocViewActivity.java
+++ b/platform/android/example/app/src/main/java/com/artifex/mupdf/example/DocViewActivity.java
@@ -8,23 +8,22 @@ import com.artifex.mupdf.android.DocView;
public class DocViewActivity extends Activity
{
- private DocView mDocView;
+ private DocView mDocView;
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
- // set up UI
+ // set up UI
setContentView(R.layout.activity_doc_view);
- mDocView = (DocView)findViewById(R.id.doc_view);
+ mDocView = (DocView)findViewById(R.id.doc_view);
// get the file path
Uri uri = getIntent().getData();
final String path = Uri.decode(uri.getEncodedPath());
- // start the view
- mDocView.start(path);
+ // start the view
+ mDocView.start(path);
}
-
}