Rename all 'com.githib.kdvolder' packages to something better
This commit is contained in:
@@ -88,7 +88,7 @@ export function activate(context: VSCode.ExtensionContext) {
|
||||
let args = [
|
||||
'-Dserver.port=' + port,
|
||||
'-cp', classpath,
|
||||
'com.github.kdvolder.lsapi.example.Main'
|
||||
'org.springframework.ide.vscode.yaml.Main'
|
||||
];
|
||||
if (DEBUG) {
|
||||
args.unshift(DEBUG_ARG);
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.kdvolder.lsapi.util;
|
||||
package org.springframework.ide.vscode.util;
|
||||
|
||||
public class Assert {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.kdvolder.lsapi.util;
|
||||
package org.springframework.ide.vscode.util;
|
||||
|
||||
import java.util.concurrent.CompletableFuture;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.kdvolder.lsapi.util;
|
||||
package org.springframework.ide.vscode.util;
|
||||
|
||||
import java.util.concurrent.CompletableFuture;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.kdvolder.lsapi.util;
|
||||
package org.springframework.ide.vscode.util;
|
||||
|
||||
import java.util.concurrent.CompletableFuture;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.kdvolder.lsapi.util;
|
||||
package org.springframework.ide.vscode.util;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.nio.file.Path;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.kdvolder.lsapi.util;
|
||||
package org.springframework.ide.vscode.util;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.kdvolder.lsapi.util;
|
||||
package org.springframework.ide.vscode.util;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.PrintWriter;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.kdvolder.lsapi.util;
|
||||
package org.springframework.ide.vscode.util;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.kdvolder.lsapi.util;
|
||||
package org.springframework.ide.vscode.util;
|
||||
|
||||
import io.typefox.lsapi.MessageParams;
|
||||
import io.typefox.lsapi.MessageParamsImpl;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.kdvolder.lsapi.util;
|
||||
package org.springframework.ide.vscode.util;
|
||||
|
||||
import java.nio.file.Path;
|
||||
import java.nio.file.Paths;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.kdvolder.lsapi.util;
|
||||
package org.springframework.ide.vscode.util;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.kdvolder.lsapi.util;
|
||||
package org.springframework.ide.vscode.util;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.concurrent.CompletableFuture;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.kdvolder.lsapi.util;
|
||||
package org.springframework.ide.vscode.util;
|
||||
|
||||
import io.typefox.lsapi.Range;
|
||||
import io.typefox.lsapi.TextDocumentContentChangeEvent;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.kdvolder.lsapi.util;
|
||||
package org.springframework.ide.vscode.util;
|
||||
|
||||
import io.typefox.lsapi.TextDocumentContentChangeEvent;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.kdvolder.lsapi.example;
|
||||
package org.springframework.ide.vscode.yaml;
|
||||
|
||||
public class ErrorCodes {
|
||||
public static final String YAML_SYNTAX_ERROR = "YAML_SYNTAX_ERROR";
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.kdvolder.lsapi.example;
|
||||
package org.springframework.ide.vscode.yaml;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
@@ -10,7 +10,7 @@ import java.util.concurrent.ExecutionException;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
import com.github.kdvolder.lsapi.util.LoggingFormat;
|
||||
import org.springframework.ide.vscode.util.LoggingFormat;
|
||||
|
||||
import io.typefox.lsapi.services.json.LoggingJsonAdapter;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.kdvolder.lsapi.example;
|
||||
package org.springframework.ide.vscode.yaml;
|
||||
|
||||
import java.io.StringReader;
|
||||
import java.util.ArrayList;
|
||||
@@ -6,15 +6,15 @@ import java.util.Iterator;
|
||||
import java.util.List;
|
||||
import java.util.concurrent.CompletableFuture;
|
||||
|
||||
import org.springframework.ide.vscode.util.Futures;
|
||||
import org.springframework.ide.vscode.util.SimpleLanguageServer;
|
||||
import org.springframework.ide.vscode.util.SimpleTextDocumentService;
|
||||
import org.springframework.ide.vscode.util.TextDocument;
|
||||
import org.yaml.snakeyaml.Yaml;
|
||||
import org.yaml.snakeyaml.error.MarkedYAMLException;
|
||||
import org.yaml.snakeyaml.error.YAMLException;
|
||||
import org.yaml.snakeyaml.nodes.Node;
|
||||
|
||||
import com.github.kdvolder.lsapi.util.Futures;
|
||||
import com.github.kdvolder.lsapi.util.SimpleLanguageServer;
|
||||
import com.github.kdvolder.lsapi.util.SimpleTextDocumentService;
|
||||
import com.github.kdvolder.lsapi.util.TextDocument;
|
||||
import com.google.common.collect.ImmutableList;
|
||||
|
||||
import io.typefox.lsapi.CompletionItem;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.kdvolder.lsapi.testharness;
|
||||
package org.springframework.ide.vscode.testharness;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.fail;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.kdvolder.lsapi.testharness;
|
||||
package org.springframework.ide.vscode.testharness;
|
||||
|
||||
import java.io.File;
|
||||
import java.nio.charset.Charset;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.kdvolder.lsapi.testharness;
|
||||
package org.springframework.ide.vscode.testharness;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
@@ -1,9 +1,9 @@
|
||||
package com.github.kdvolder.lsapi.example;
|
||||
package org.springframework.ide.vscode.yaml;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import com.github.kdvolder.lsapi.testharness.Editor;
|
||||
import com.github.kdvolder.lsapi.testharness.LanguageServerHarness;
|
||||
import org.springframework.ide.vscode.testharness.Editor;
|
||||
import org.springframework.ide.vscode.testharness.LanguageServerHarness;
|
||||
import org.springframework.ide.vscode.yaml.YamlLanguageServer;
|
||||
|
||||
/**
|
||||
* This class is a placeholder where we will attempt to copy and port
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.kdvolder.lsapi.example;
|
||||
package org.springframework.ide.vscode.yaml;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
@@ -8,9 +8,9 @@ import java.nio.file.Paths;
|
||||
import java.util.List;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import com.github.kdvolder.lsapi.testharness.LanguageServerHarness;
|
||||
import com.github.kdvolder.lsapi.testharness.TextDocumentInfo;
|
||||
import org.springframework.ide.vscode.testharness.LanguageServerHarness;
|
||||
import org.springframework.ide.vscode.testharness.TextDocumentInfo;
|
||||
import org.springframework.ide.vscode.yaml.YamlLanguageServer;
|
||||
|
||||
import io.typefox.lsapi.CompletionItem;
|
||||
import io.typefox.lsapi.CompletionList;
|
||||
Reference in New Issue
Block a user