From cf06126ce1fe9b01292003a5c836f868d8be521f Mon Sep 17 00:00:00 2001 From: davigonz Date: Wed, 4 Mar 2020 19:03:48 +0100 Subject: [PATCH] Move account version constant to a better place within AccountUtils --- .../owncloud/android/lib/common/accounts/AccountUtils.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/owncloudComLibrary/src/main/java/com/owncloud/android/lib/common/accounts/AccountUtils.java b/owncloudComLibrary/src/main/java/com/owncloud/android/lib/common/accounts/AccountUtils.java index 5b57023d..19b3b277 100644 --- a/owncloudComLibrary/src/main/java/com/owncloud/android/lib/common/accounts/AccountUtils.java +++ b/owncloudComLibrary/src/main/java/com/owncloud/android/lib/common/accounts/AccountUtils.java @@ -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; } }