mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-27 05:44:51 +00:00
spelling: listener
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
committed by
Jindra Petřík
parent
91a91916a3
commit
5194db359b
@@ -457,7 +457,7 @@ public class Main {
|
||||
|
||||
@Override
|
||||
public SWF prepare(SWF instrSWF, String swfHash) throws InterruptedException {
|
||||
EventListener prepEventListner = new EventListener() {
|
||||
EventListener prepEventListener = new EventListener() {
|
||||
@Override
|
||||
public void handleExportingEvent(String type, int index, int count, Object data) {
|
||||
}
|
||||
@@ -473,7 +473,7 @@ public class Main {
|
||||
}
|
||||
}
|
||||
};
|
||||
instrSWF.addEventListener(prepEventListner);
|
||||
instrSWF.addEventListener(prepEventListener);
|
||||
try {
|
||||
File fTempFile = new File(instrSWF.getFile());
|
||||
instrSWF.enableDebugging(true, new File("."), true, doPCode, swfHash);
|
||||
@@ -523,7 +523,7 @@ public class Main {
|
||||
} catch (IOException ex) {
|
||||
//ignore, return instrSWF
|
||||
}
|
||||
instrSWF.removeEventListener(prepEventListner);
|
||||
instrSWF.removeEventListener(prepEventListener);
|
||||
|
||||
//instrSWF = super.prepare(instrSWF);
|
||||
if (!DebuggerTools.hasDebugger(instrSWF)) {
|
||||
|
||||
@@ -274,7 +274,7 @@ public class PinButton extends JPanel {
|
||||
actionListeners.add(listener);
|
||||
}
|
||||
|
||||
public void removeActionListner(ActionListener listener) {
|
||||
public void removeActionListener(ActionListener listener) {
|
||||
actionListeners.remove(listener);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user