From: Jorge Antonio Diaz-Benito Soriano Date: Sun, 19 Oct 2014 06:10:54 +0000 (+0200) Subject: Fixed a mistake. X-Git-Tag: oc-android-1.8~17^2~8^2~14^2~9 X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/commitdiff_plain/cbf2f96a83b3525bc7a8cf23a7dc24ebaaa391aa?hp=--cc Fixed a mistake. --- cbf2f96a83b3525bc7a8cf23a7dc24ebaaa391aa diff --git a/src/com/owncloud/android/ui/preview/PreviewTextFragment.java b/src/com/owncloud/android/ui/preview/PreviewTextFragment.java index 790cfde6..e66cc41d 100644 --- a/src/com/owncloud/android/ui/preview/PreviewTextFragment.java +++ b/src/com/owncloud/android/ui/preview/PreviewTextFragment.java @@ -193,7 +193,7 @@ public class PreviewTextFragment extends FileFragment { private class TextLineAdapter extends BaseAdapter { private static final int LIST_ITEM_LAYOUT = R.layout.text_file_preview_list_item; - private final List items = new ArrayList<>(); + private final List items = new ArrayList(); private void add(String line) { items.add(line); @@ -351,7 +351,7 @@ public class PreviewTextFragment extends FileFragment { /** * Update the file of the fragment with file value * - * @param file + * @param file The new file to set */ public void updateFile(OCFile file) { setFile(file);