(byte[] bytes)
| 13 | |
| 14 | // Placeholder methods for helpers and callbacks, assumed to be provided elsewhere |
| 15 | public static String safeBytesToString(byte[] bytes) { |
| 16 | return new String(bytes); |
| 17 | } |
| 18 | |
| 19 | public static byte[] concatenate(byte[] a, byte[] b) { |
| 20 | byte[] result = new byte[a.length + b.length]; |
no outgoing calls
no test coverage detected