We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8c3e84 commit c7a29bcCopy full SHA for c7a29bc
1 file changed
src/com/owncloud/android/utils/FileStorageUtils.java
@@ -46,12 +46,12 @@
46
* Static methods to help in access to local file system.
47
*/
48
public class FileStorageUtils {
49
- public static Integer mSortOrder;
50
- public static Boolean mSortAscending;
51
public static final Integer SORT_NAME = 0;
52
public static final Integer SORT_DATE = 1;
53
public static final Integer SORT_SIZE = 2;
54
-
+ public static Integer mSortOrder = SORT_NAME;
+ public static Boolean mSortAscending = true;
+
55
56
//private static final String LOG_TAG = "FileStorageUtils";
57
0 commit comments