mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 13:21:07 +00:00
Fixed code style
This commit is contained in:
@@ -43,7 +43,7 @@ public class HarmanAirPacker implements Packer {
|
||||
return false;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean decrypt(InputStream is, OutputStream os) throws IOException {
|
||||
@@ -75,5 +75,5 @@ public class HarmanAirPacker implements Packer {
|
||||
@Override
|
||||
public String getIdentifier() {
|
||||
return "harmanair";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -51,7 +51,7 @@ public class MochiCryptPacker16Bit implements Packer {
|
||||
} catch (IOException ex) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -131,5 +131,5 @@ public class MochiCryptPacker16Bit implements Packer {
|
||||
@Override
|
||||
public String getIdentifier() {
|
||||
return "mochicrypt16";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -51,7 +51,7 @@ public class MochiCryptPacker32Bit implements Packer {
|
||||
} catch (IOException ex) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -131,5 +131,5 @@ public class MochiCryptPacker32Bit implements Packer {
|
||||
@Override
|
||||
public String getIdentifier() {
|
||||
return "mochicrypt32";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -37,7 +37,7 @@ public interface Packer {
|
||||
* work
|
||||
*/
|
||||
public Boolean suitableForBinaryData(DefineBinaryDataTag dataTag);
|
||||
|
||||
|
||||
/**
|
||||
* Is this data packed with this packer?
|
||||
*
|
||||
@@ -75,6 +75,6 @@ public interface Packer {
|
||||
* @return
|
||||
*/
|
||||
public String getName();
|
||||
|
||||
|
||||
public String getIdentifier();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user