Skip to content
This repository was archived by the owner on Jul 25, 2024. It is now read-only.

Commit ba74e0c

Browse files
kunall17niftynei
authored andcommitted
Change StringBuffer to StringBuilder
1 parent c3b8534 commit ba74e0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/com/zulip/android/util/MD5Util.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class MD5Util {
1515
private MD5Util() {}
1616

1717
private static String hex(byte[] array) {
18-
StringBuffer sb = new StringBuffer();
18+
StringBuilder sb = new StringBuilder();
1919
for (int i = 0; i < array.length; ++i) {
2020
sb.append(Integer.toHexString((array[i] & 0xFF) | 0x100).substring(
2121
1, 3));

0 commit comments

Comments
 (0)