X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=eclipse%2Fplugins%2Forg.argeo.slc.ui.launch%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fui%2Flaunch%2FDeployedSlcRuntime.java;h=bca1113df8b592bc315f5c2db53370b344108e9e;hb=6958180362d5bb9724f21a55f723800ef397d876;hp=e6691baf811f179b8a498c8eed8c7e42b092b93b;hpb=5c3611122fcc51cf6635f7110081a80393fb3c18;p=gpl%2Fargeo-slc.git diff --git a/eclipse/plugins/org.argeo.slc.ui.launch/src/main/java/org/argeo/slc/ui/launch/DeployedSlcRuntime.java b/eclipse/plugins/org.argeo.slc.ui.launch/src/main/java/org/argeo/slc/ui/launch/DeployedSlcRuntime.java index e6691baf8..bca1113df 100644 --- a/eclipse/plugins/org.argeo.slc.ui.launch/src/main/java/org/argeo/slc/ui/launch/DeployedSlcRuntime.java +++ b/eclipse/plugins/org.argeo.slc.ui.launch/src/main/java/org/argeo/slc/ui/launch/DeployedSlcRuntime.java @@ -21,7 +21,6 @@ public class DeployedSlcRuntime implements SlcRuntime { } } - @Override public String[] getClasspath() throws CoreException { List classpath = new Vector(); File libDir = new File(baseDir.getPath() + File.separator + relLibDir); @@ -36,7 +35,6 @@ public class DeployedSlcRuntime implements SlcRuntime { return classpath.toArray(new String[classpath.size()]); } - @Override public IVMInstall getVmInstall() throws CoreException { return JavaRuntime.getDefaultVMInstall(); } @@ -45,7 +43,6 @@ public class DeployedSlcRuntime implements SlcRuntime { return baseDir.getPath(); } - @Override public String getJavaLibraryPath() { return baseDir.getPath() + File.separator + "bin"; }