mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 03:00:51 +00:00
code reformating, unused imports strip
This commit is contained in:
@@ -32,12 +32,11 @@ public class ActionJump extends Action {
|
||||
public int offset;
|
||||
public String identifier;
|
||||
|
||||
public ActionJump(int offset){
|
||||
super(0x99,2);
|
||||
this.offset=offset;
|
||||
public ActionJump(int offset) {
|
||||
super(0x99, 2);
|
||||
this.offset = offset;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public ActionJump(SWFInputStream sis) throws IOException {
|
||||
super(0x99, 2);
|
||||
offset = sis.readSI16();
|
||||
@@ -87,6 +86,4 @@ public class ActionJump extends Action {
|
||||
public String toString() {
|
||||
return "Jump";
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user