Skip to content

Commit

Permalink
Changed file type error text
Browse files Browse the repository at this point in the history
  • Loading branch information
Airell committed Dec 16, 2019
1 parent df75ceb commit e402568
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
* along with Nomad; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/

/*
* Created on Nov 23, 2006
* Updated on Dec 16, 2019
Expand Down Expand Up @@ -577,7 +576,7 @@ public void fileSave(boolean saveAs)
}
else
{
JOptionPane.showMessageDialog(mainWindow, "Could not find service to save file.");
JOptionPane.showMessageDialog(mainWindow, "Unknown file type.");
}
}

Expand Down Expand Up @@ -615,7 +614,7 @@ public void fileOpen()

if (service == null)
{
JOptionPane.showMessageDialog(mainWindow, "Could not find service to open file.");
JOptionPane.showMessageDialog(mainWindow, "Unknown file type.");
return;
}
Runnable run = new Runnable()
Expand Down

0 comments on commit e402568

Please sign in to comment.