mirror of
https://github.com/aljazceru/signal-cli.git
synced 2026-01-26 17:14:21 +01:00
Fix minor inspection issues
This commit is contained in:
@@ -11,8 +11,8 @@ public class Hex {
|
||||
|
||||
public static String toStringCondensed(byte[] bytes) {
|
||||
StringBuffer buf = new StringBuffer();
|
||||
for (int i = 0; i < bytes.length; i++) {
|
||||
appendHexChar(buf, bytes[i]);
|
||||
for (final byte aByte : bytes) {
|
||||
appendHexChar(buf, aByte);
|
||||
}
|
||||
return buf.toString();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user