Replaced qualified names with simple names.

This commit is contained in:
MobiusDev
2018-06-19 03:23:43 +00:00
parent a5b69096dd
commit e7606fb5ec
341 changed files with 1119 additions and 1137 deletions

View File

@@ -88,7 +88,7 @@ public final class CommonUtil
{
final byte[] data = new byte[buf.remaining()];
buf.get(data);
final String hex = CommonUtil.printData(data, data.length);
final String hex = printData(data, data.length);
buf.position(buf.position() - data.length);
return hex;
}

View File

@@ -49,7 +49,7 @@ public final class NewCrypt
*/
public static boolean verifyChecksum(byte[] raw)
{
return NewCrypt.verifyChecksum(raw, 0, raw.length);
return verifyChecksum(raw, 0, raw.length);
}
/**
@@ -97,7 +97,7 @@ public final class NewCrypt
*/
public static void appendChecksum(byte[] raw)
{
NewCrypt.appendChecksum(raw, 0, raw.length);
appendChecksum(raw, 0, raw.length);
}
/**
@@ -142,7 +142,7 @@ public final class NewCrypt
*/
public static void encXORPass(byte[] raw, int key)
{
NewCrypt.encXORPass(raw, 0, raw.length, key);
encXORPass(raw, 0, raw.length, key);
}
/**