Skip to content

Commit eb66e6a

Browse files
committed
fix typo
1 parent 034abef commit eb66e6a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/openstreetmap/josm/plugins/scripting/ui/ScriptExecutor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ private void notifyRhinoException(RhinoException e) {
157157
);
158158
}
159159

160-
private void notifyIOExeption(File scriptFile, IOException e) {
160+
private void notifyIOException(File scriptFile, IOException e) {
161161
HelpAwareOptionPane.showOptionDialog(
162162
this.parent,
163163
"<html>"
@@ -352,7 +352,7 @@ public void runScriptWithEmbeddedEngine(@NotNull final File scriptFile)
352352
} catch(IOException e){
353353
logger.log(Level.SEVERE, String.format("failed to execute script file. file='%s'",
354354
scriptFile.getAbsolutePath()), e);
355-
notifyIOExeption(scriptFile, e);
355+
notifyIOException(scriptFile, e);
356356
} catch(RuntimeException e){
357357
logger.log(Level.SEVERE, String.format("failed to execute script file. file='%s'",
358358
scriptFile.getAbsolutePath()), e);

0 commit comments

Comments
 (0)