IDEA plugin: fix spamming exception

This commit is contained in:
Alexey Andreev 2021-10-14 10:48:23 +03:00
parent 08aa642fe5
commit 1ef2d5d1c2

View File

@ -35,6 +35,11 @@ public class TeaVMDevServerConfigurationType extends ConfigurationTypeBase {
public RunConfiguration createTemplateConfiguration(@NotNull Project project) {
return new TeaVMDevServerConfiguration(new RunConfigurationModule(project), this);
}
@Override
public String getId() {
return "TeaVMDevServerConfiguration";
}
};
@Override