Resolve an Xcode whitespace tragedy

This commit is contained in:
TwistedUmbrella 2015-08-10 22:40:44 -04:00
parent 83d525d0f9
commit 0f4afb29c3
1 changed files with 6 additions and 6 deletions

View File

@ -430,14 +430,14 @@ public class FileBrowser extends Fragment {
list.add(null);
if (parent != null) {
if (parent != null) {
list.add(parent);
}
}
if (flist != null) {
Arrays.sort(flist, new DirSort());
Collections.addAll(list, flist);
}
if (flist != null) {
Arrays.sort(flist, new DirSort());
Collections.addAll(list, flist);
}
for (final File file : list) {
if (file != null && !file.isDirectory() && !file.getAbsolutePath().equals("/data"))