MCPcopy Create free account
hub / github.com/JavaCourse00/JavaCourseCodes / decode

Method decode

01jvm/XlassLoader.java:57–63  ·  view source on GitHub ↗
(byte[] byteArray)

Source from the content-addressed store, hash-verified

55
56 // 解码
57 private static byte[] decode(byte[] byteArray) {
58 byte[] targetArray = new byte[byteArray.length];
59 for (int i = 0; i < byteArray.length; i++) {
60 targetArray[i] = (byte) (255 - byteArray[i]);
61 }
62 return targetArray;
63 }
64
65 // 关闭
66 private static void close(Closeable res) {

Callers 1

findClassMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected