diff --git a/pom.xml b/pom.xml index 92bf3b4..c40ad2d 100644 --- a/pom.xml +++ b/pom.xml @@ -802,7 +802,7 @@ target/keystore RELEASE200 - 1.6 + 1.7 https://github.com/albilu/netbeansPython https://github.com/albilu/netbeansPython.git UTF-8 diff --git a/ppuc/13/updates.xml b/ppuc/13/updates.xml index df04b07..22d623a 100644 --- a/ppuc/13/updates.xml +++ b/ppuc/13/updates.xml @@ -1,6 +1,6 @@ - - - + + + \ No newline at end of file diff --git a/ppuc/14/updates.xml b/ppuc/14/updates.xml index ebaef24..b641f89 100644 --- a/ppuc/14/updates.xml +++ b/ppuc/14/updates.xml @@ -1,6 +1,6 @@ - - - + + + \ No newline at end of file diff --git a/ppuc/15/updates.xml b/ppuc/15/updates.xml index 4df612c..b35231e 100644 --- a/ppuc/15/updates.xml +++ b/ppuc/15/updates.xml @@ -1,6 +1,6 @@ - - - + + + \ No newline at end of file diff --git a/ppuc/16/updates.xml b/ppuc/16/updates.xml index d6578b0..321b918 100644 --- a/ppuc/16/updates.xml +++ b/ppuc/16/updates.xml @@ -1,6 +1,6 @@ - - - + + + \ No newline at end of file diff --git a/ppuc/17/updates.xml b/ppuc/17/updates.xml index 1aeb908..fde88c3 100644 --- a/ppuc/17/updates.xml +++ b/ppuc/17/updates.xml @@ -1,6 +1,6 @@ - - - + + + \ No newline at end of file diff --git a/ppuc/18/updates.xml b/ppuc/18/updates.xml index 2545bc5..c024201 100644 --- a/ppuc/18/updates.xml +++ b/ppuc/18/updates.xml @@ -1,6 +1,6 @@ - - - + + + \ No newline at end of file diff --git a/ppuc/19/updates.xml b/ppuc/19/updates.xml index fea937e..b2b6791 100644 --- a/ppuc/19/updates.xml +++ b/ppuc/19/updates.xml @@ -1,6 +1,6 @@ - - - + + + \ No newline at end of file diff --git a/ppuc/20/updates.xml b/ppuc/20/updates.xml index 26c7358..2ab5a19 100644 --- a/ppuc/20/updates.xml +++ b/ppuc/20/updates.xml @@ -1,6 +1,6 @@ - - - + + + \ No newline at end of file diff --git a/src/main/java/org/netbeans/modules/python/options/PythonLspServerConfigsPanel.java b/src/main/java/org/netbeans/modules/python/options/PythonLspServerConfigsPanel.java index 5710a6e..eed1f18 100644 --- a/src/main/java/org/netbeans/modules/python/options/PythonLspServerConfigsPanel.java +++ b/src/main/java/org/netbeans/modules/python/options/PythonLspServerConfigsPanel.java @@ -27,6 +27,7 @@ import org.apache.commons.io.IOUtils; import org.eclipse.lsp4j.DidChangeConfigurationParams; import org.netbeans.modules.lsp.client.LSPBindings; +import org.netbeans.modules.python.Installer; import org.netbeans.modules.python.PythonUtility; import org.openide.util.Exceptions; import org.openide.util.NbPreferences; @@ -273,7 +274,7 @@ void store() { if (!settingsSchema.exists()) { Files.writeString(settingsSchema.toPath(), IOUtils.resourceToString("org/netbeans/modules/python/schema.json", - StandardCharsets.UTF_8) + StandardCharsets.UTF_8, Installer.class.getClassLoader()) ); } JsonSchema jsonSchema = factory.getSchema(Files.readString(settingsSchema.toPath()));