Derped when I copied the jar loading code. -Bibl
This commit is contained in:
parent
4a7332fca5
commit
ff7bd343fc
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ public class CompiledJavaPluginLaunchStrategy implements PluginLaunchStrategy {
|
||||||
while ((entry = jis.getNextEntry()) != null) {
|
while ((entry = jis.getNextEntry()) != null) {
|
||||||
try {
|
try {
|
||||||
String name = entry.getName();
|
String name = entry.getName();
|
||||||
if(!name.endsWith(".class")){
|
if(name.endsWith(".class")){
|
||||||
byte[] bytes = JarUtils.getBytes(jis);
|
byte[] bytes = JarUtils.getBytes(jis);
|
||||||
String magic = String.format("%02X", bytes[0]) + String.format("%02X", bytes[1]) + String.format("%02X", bytes[2]) + String.format("%02X", bytes[3]);
|
String magic = String.format("%02X", bytes[0]) + String.format("%02X", bytes[1]) + String.format("%02X", bytes[2]) + String.format("%02X", bytes[3]);
|
||||||
if(magic.toLowerCase().equals("cafebabe")) {
|
if(magic.toLowerCase().equals("cafebabe")) {
|
||||||
|
|
Loading…
Reference in a new issue