remove unused classes and increment version
diff --git a/plugins/org.eclipse.dltk.javascript.core/.classpath b/plugins/org.eclipse.dltk.javascript.core/.classpath index f8ec095..9cf5123 100644 --- a/plugins/org.eclipse.dltk.javascript.core/.classpath +++ b/plugins/org.eclipse.dltk.javascript.core/.classpath
@@ -2,7 +2,7 @@ <classpath> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/> <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> - <classpathentry excluding="org/eclipse/dltk/internal/javascript/typeinference/IFieldReference.java|org/eclipse/dltk/internal/javascript/typeinference/IMethodReference.java" kind="src" path="src"/> + <classpathentry kind="src" path="src"/> <classpathentry kind="src" path="parser"/> <classpathentry kind="output" path="bin"/> </classpath>
diff --git a/plugins/org.eclipse.dltk.javascript.core/META-INF/MANIFEST.MF b/plugins/org.eclipse.dltk.javascript.core/META-INF/MANIFEST.MF index 1347fd6..3d996b9 100644 --- a/plugins/org.eclipse.dltk.javascript.core/META-INF/MANIFEST.MF +++ b/plugins/org.eclipse.dltk.javascript.core/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: org.eclipse.dltk.javascript.core;singleton:=true -Bundle-Version: 2.0.0.qualifier +Bundle-Version: 3.0.0.qualifier Bundle-Vendor: %pluginProvider Bundle-Localization: plugin Require-Bundle: org.eclipse.core.runtime,
diff --git a/plugins/org.eclipse.dltk.javascript.core/src/org/eclipse/dltk/internal/javascript/typeinference/IFieldReference.java b/plugins/org.eclipse.dltk.javascript.core/src/org/eclipse/dltk/internal/javascript/typeinference/IFieldReference.java deleted file mode 100644 index 0b9cff4..0000000 --- a/plugins/org.eclipse.dltk.javascript.core/src/org/eclipse/dltk/internal/javascript/typeinference/IFieldReference.java +++ /dev/null
@@ -1,14 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2005, 2007 IBM Corporation and others. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html - * - - *******************************************************************************/ -package org.eclipse.dltk.internal.javascript.typeinference; - -public interface IFieldReference { - String getInitialValue(); -}
diff --git a/plugins/org.eclipse.dltk.javascript.core/src/org/eclipse/dltk/internal/javascript/typeinference/IMethodReference.java b/plugins/org.eclipse.dltk.javascript.core/src/org/eclipse/dltk/internal/javascript/typeinference/IMethodReference.java deleted file mode 100644 index 0f14c4c..0000000 --- a/plugins/org.eclipse.dltk.javascript.core/src/org/eclipse/dltk/internal/javascript/typeinference/IMethodReference.java +++ /dev/null
@@ -1,15 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2005, 2007 IBM Corporation and others. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html - * - - *******************************************************************************/ -package org.eclipse.dltk.internal.javascript.typeinference; - -public interface IMethodReference { - - public String[] getParameterNames(); -}