Browse Source

authentication: Added empty private constructor to AccountUtils.

The private constructor hides the implicit public one
ardevd 7 years ago
parent
commit
27999b5b2c

+ 4 - 0
src/main/java/com/owncloud/android/authentication/AccountUtils.java

@@ -47,6 +47,10 @@ public class AccountUtils {
     public static final int ACCOUNT_VERSION_WITH_PROPER_ID = 2;
     public static final int ACCOUNT_VERSION_WITH_PROPER_ID = 2;
     public static final String ACCOUNT_USES_STANDARD_PASSWORD = "ACCOUNT_USES_STANDARD_PASSWORD";
     public static final String ACCOUNT_USES_STANDARD_PASSWORD = "ACCOUNT_USES_STANDARD_PASSWORD";
 
 
+    private AccountUtils() {
+        // Required empty constructor
+    }
+
     /**
     /**
      * Can be used to get the currently selected ownCloud {@link Account} in the
      * Can be used to get the currently selected ownCloud {@link Account} in the
      * application preferences.
      * application preferences.