diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2016-07-15 14:38:42 +0200 |
---|---|---|
committer | fred ross-perry <fred.ross-perry@artifex.com> | 2016-07-15 09:36:56 -0700 |
commit | 07bf093b3a11cc776a6a227e8cb478a87d2cdd94 (patch) | |
tree | 09ef85881a1ee403154fbcd5cbb2b0adf9232dee /platform/android/viewer/src/com/artifex/mupdfdemo/OutlineAdapter.java | |
parent | e21010d7b33afd2268c2c2104be296ce6c1a024c (diff) | |
download | mupdf-07bf093b3a11cc776a6a227e8cb478a87d2cdd94.tar.xz |
Fix indentation for Java sources.
Diffstat (limited to 'platform/android/viewer/src/com/artifex/mupdfdemo/OutlineAdapter.java')
-rw-r--r-- | platform/android/viewer/src/com/artifex/mupdfdemo/OutlineAdapter.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/android/viewer/src/com/artifex/mupdfdemo/OutlineAdapter.java b/platform/android/viewer/src/com/artifex/mupdfdemo/OutlineAdapter.java index 4251ed8e..c1b22021 100644 --- a/platform/android/viewer/src/com/artifex/mupdfdemo/OutlineAdapter.java +++ b/platform/android/viewer/src/com/artifex/mupdfdemo/OutlineAdapter.java @@ -7,11 +7,11 @@ import android.widget.BaseAdapter; import android.widget.TextView; public class OutlineAdapter extends BaseAdapter { - private final OutlineItem mItems[]; + private final OutlineItem mItems[]; private final LayoutInflater mInflater; public OutlineAdapter(LayoutInflater inflater, OutlineItem items[]) { mInflater = inflater; - mItems = items; + mItems = items; } public int getCount() { |