1
0
mirror of https://github.com/owncloud/android-library.git synced 2025-06-07 16:06:08 +00:00

Move account version constant to a better place within AccountUtils

This commit is contained in:
davigonz 2020-03-04 19:03:48 +01:00
parent 0028d63292
commit cf06126ce1

View File

@ -46,9 +46,6 @@ import java.util.ArrayList;
import java.util.List;
public class AccountUtils {
public static final int ACCOUNT_VERSION = 1;
/**
* Constructs full url to host and webdav resource basing on host version
*
@ -331,5 +328,7 @@ public class AccountUtils {
* OAuth2 scope
*/
public static final String KEY_OAUTH2_SCOPE = "oc_oauth2_scope";
public static final int ACCOUNT_VERSION = 1;
}
}