java-decompiler: post-import cleanup (classes moved)
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package org.jetbrains.java.decompiler.code.instructions;
|
||||
|
||||
import java.io.DataOutputStream;
|
||||
import java.io.IOException;
|
||||
|
||||
import org.jetbrains.java.decompiler.code.Instruction;
|
||||
|
||||
public class INSTANCEOF extends Instruction {
|
||||
|
||||
public void writeToStream(DataOutputStream out, int offset) throws IOException {
|
||||
out.writeByte(opc_instanceof);
|
||||
out.writeShort(getOperand(0));
|
||||
}
|
||||
|
||||
public int length() {
|
||||
return 3;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user