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:
Gered 2015-12-01 16:08:49 -05:00
parent 063e88be02
commit a6b6110331

View file

@ -127,7 +127,7 @@ final class Actions {
} else if ( source == MenuItem.OPEN_RECENT ) {
open( new File( event.getActionCommand() ) );
} else if ( source == MenuItem.IMPORT ) {
imprt();
importOtherFormat();
} else if ( source == MenuItem.SAVE ) {
run.saveLiveTimes( !run.isPersonalBest() );
run.reset();
@ -397,7 +397,7 @@ final class Actions {
* selected, the user is asked for one. As of now, only WSplit run files
* are supported.
*/
private void imprt() {
private void importOtherFormat() {
if ( !confirmOverwrite() ) {
return;
}