SwingHelper.showErrorDialog(
this, _("createProfile.emptyNameError"), _("invalidInput.title"));
return;
}
SimpleProfile profile = new SimpleProfile();
application.setVersion(version);
profile.setApplication(application);
profile.setName(name);
try {
getLauncher().getProfiles().add(profile);
dispose();
} catch (IOException e) {
log.log(Level.WARNING, "Failed to create a profile", e);