Skip to content

Commit 141c92d

Browse files
committed
Reverts a previous unnecessary change that's accidentally committed for StringUtils
1 parent c8adccf commit 141c92d

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

WordPressUtils/src/main/java/org/wordpress/android/util/StringUtils.java

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ public static String removeTrailingSlash(final String str) {
186186
return str;
187187
}
188188

189-
return str.substring(0, str.length() - 1);
189+
return str.substring(0, str.length() -1);
190190
}
191191

192192
/*
@@ -301,10 +301,4 @@ public static long stringToLong(String s, long defaultValue) {
301301
return defaultValue;
302302
}
303303
}
304-
305-
public static void convertArrayToLowercase(String[] array) {
306-
for (int i = 0; i < array.length; i++) {
307-
array[i] = array[i].toLowerCase();
308-
}
309-
}
310304
}

0 commit comments

Comments
 (0)