nitpicky spelling error fix. use a better name
"imprt" was obviously used because "import" is a keyword, but it bugs me seeing a spelling mistake like that, even if it was intentional!
This commit is contained in:
parent
063e88be02
commit
a6b6110331
|
@ -127,7 +127,7 @@ final class Actions {
|
||||||
} else if ( source == MenuItem.OPEN_RECENT ) {
|
} else if ( source == MenuItem.OPEN_RECENT ) {
|
||||||
open( new File( event.getActionCommand() ) );
|
open( new File( event.getActionCommand() ) );
|
||||||
} else if ( source == MenuItem.IMPORT ) {
|
} else if ( source == MenuItem.IMPORT ) {
|
||||||
imprt();
|
importOtherFormat();
|
||||||
} else if ( source == MenuItem.SAVE ) {
|
} else if ( source == MenuItem.SAVE ) {
|
||||||
run.saveLiveTimes( !run.isPersonalBest() );
|
run.saveLiveTimes( !run.isPersonalBest() );
|
||||||
run.reset();
|
run.reset();
|
||||||
|
@ -397,7 +397,7 @@ final class Actions {
|
||||||
* selected, the user is asked for one. As of now, only WSplit run files
|
* selected, the user is asked for one. As of now, only WSplit run files
|
||||||
* are supported.
|
* are supported.
|
||||||
*/
|
*/
|
||||||
private void imprt() {
|
private void importOtherFormat() {
|
||||||
if ( !confirmOverwrite() ) {
|
if ( !confirmOverwrite() ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue