authentication: Added empty private constructor to AccountUtils.

The private constructor hides the implicit public one
This commit is contained in:
ardevd 2018-05-15 08:55:59 +02:00
parent 3b93315193
commit 27999b5b2c

View file

@ -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.