mirror of
https://github.com/nextcloud/android.git
synced 2024-11-28 02:17:43 +03:00
authentication: Added empty private constructor to AccountUtils.
The private constructor hides the implicit public one
This commit is contained in:
parent
3b93315193
commit
27999b5b2c
1 changed files with 4 additions and 0 deletions
|
@ -47,6 +47,10 @@ public class AccountUtils {
|
|||
public static final int ACCOUNT_VERSION_WITH_PROPER_ID = 2;
|
||||
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
|
||||
* application preferences.
|
||||
|
|
Loading…
Reference in a new issue