Bläddra i källkod

authentication: Use single quotes around single character "lastIndexOf" calls.

An indexOf or lastIndexOf call with a single letter String can be made more performant by switching to a call with a char argument.
ardevd 6 år sedan
förälder
incheckning
e5a1de5e50
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. 2 2
      src/main/java/com/owncloud/android/authentication/AccountUtils.java

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

@@ -106,13 +106,13 @@ public class AccountUtils {
         Account[] ocAccounts = getAccounts(context);
 
         if (account != null && account.name != null) {
-            int lastAtPos = account.name.lastIndexOf("@");
+            int lastAtPos = account.name.lastIndexOf('@');
             String hostAndPort = account.name.substring(lastAtPos + 1);
             String username = account.name.substring(0, lastAtPos);
             String otherHostAndPort;
             String otherUsername;
             for (Account otherAccount : ocAccounts) {
-                lastAtPos = otherAccount.name.lastIndexOf("@");
+                lastAtPos = otherAccount.name.lastIndexOf('@');
                 otherHostAndPort = otherAccount.name.substring(lastAtPos + 1);
                 otherUsername = otherAccount.name.substring(0, lastAtPos);
                 if (otherHostAndPort.equals(hostAndPort) &&