fixed typo

This commit is contained in:
Martin Lippert
2021-04-28 10:09:53 +02:00
parent da16b399f3
commit 07459c6f5e
3 changed files with 7 additions and 7 deletions

View File

@@ -89,7 +89,7 @@ import reactor.core.publisher.Hooks;
@ComponentScan
@EnableConfigurationProperties(BootLsConfigProperties.class)
//@SpringBootApplication
public class BootLanguagServerBootApp {
public class BootLanguageServerBootApp {
private static final String SERVER_NAME = "boot-language-server";
@@ -98,7 +98,7 @@ public class BootLanguagServerBootApp {
System.setProperty(LanguageServerRunner.SYSPROP_LANGUAGESERVER_NAME, SERVER_NAME); //makes it easy to recognize language server processes - and set this as early as possible
LogRedirect.bootRedirectToFile(SERVER_NAME); //TODO: use boot (or logback realy) to configure logging instead.
SpringApplication.run(BootLanguagServerBootApp.class, args);
SpringApplication.run(BootLanguageServerBootApp.class, args);
}
@ConditionalOnMissingClass("org.springframework.ide.vscode.languageserver.testharness.LanguageServerHarness")