mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-29 00:55:32 +08:00
GT-2702: Fixing spelling.
This commit is contained in:
+3
-3
@@ -93,7 +93,7 @@ public class ArchivePlugin extends Plugin implements FrontEndOnly, ProjectListen
|
||||
private volatile boolean isArchiving;
|
||||
private volatile boolean isRestoring;
|
||||
private TaskListener archivingListener;
|
||||
private TaskListener restoringListner;
|
||||
private TaskListener restoringListener;
|
||||
|
||||
//////////////////////////////////////////////////////////////////
|
||||
|
||||
@@ -282,7 +282,7 @@ public class ArchivePlugin extends Plugin implements FrontEndOnly, ProjectListen
|
||||
|
||||
isRestoring = true;
|
||||
|
||||
restoringListner = new TaskListener() {
|
||||
restoringListener = new TaskListener() {
|
||||
@Override
|
||||
public void taskCompleted(Task task) {
|
||||
isRestoring = false;
|
||||
@@ -295,7 +295,7 @@ public class ArchivePlugin extends Plugin implements FrontEndOnly, ProjectListen
|
||||
};
|
||||
|
||||
Task task = new RestoreTask(lastRestoreLocator, archiveJar, this);
|
||||
task.addTaskListener(restoringListner);
|
||||
task.addTaskListener(restoringListener);
|
||||
new TaskLauncher(task, tool.getToolFrame());
|
||||
}
|
||||
|
||||
|
||||
@@ -623,7 +623,7 @@ public class OptionsTest extends AbstractGenericTest {
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return 1;// set so that this listener gets called after the storingOptionsListnere
|
||||
return 1;// set so that this listener gets called after the storingOptionsListener
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user