mirror of
https://github.com/aljazceru/signal-cli.git
synced 2026-01-19 21:54:25 +01:00
Extract util methods to separate classes
This commit is contained in:
@@ -6,6 +6,9 @@ public class Hex {
|
||||
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'
|
||||
};
|
||||
|
||||
private Hex() {
|
||||
}
|
||||
|
||||
public static String toStringCondensed(byte[] bytes) {
|
||||
StringBuffer buf = new StringBuffer();
|
||||
for (int i = 0; i < bytes.length; i++) {
|
||||
|
||||
Reference in New Issue
Block a user