less Jet in the UI

This commit is contained in:
Dmitry Jemerov
2011-07-19 19:02:06 +02:00
parent 5d5710919c
commit 3dd73b47ec
2 changed files with 3 additions and 3 deletions
@@ -24,12 +24,12 @@ public class JetFileType extends LanguageFileType {
@NotNull
public String getDescription() {
return "Jet Language";
return "Kotlin";
}
@NotNull
public String getDefaultExtension() {
return "jet";
return "kt";
}
public Icon getIcon() {
@@ -14,7 +14,7 @@ public class JetRunConfigurationType extends ConfigurationTypeBase {
}
public JetRunConfigurationType() {
super("JetRunConfigurationType", "Jet", "Jet", JetFileType.INSTANCE.getIcon());
super("JetRunConfigurationType", "Kotlin", "Kotlin", JetFileType.INSTANCE.getIcon());
addFactory(new JetRunConfigurationFactory(this));
}