Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlivier Thomann2009-10-01 19:29:38 +0000
committerOlivier Thomann2009-10-01 19:29:38 +0000
commit4ca574a49f709b93b45c75c0fb1b7d28f62e5f6b (patch)
tree4f33ac3fb8a1ec201d6378206d4580da3d0c3eec
parent63900accc92a1c7d04e4249003bcf41ba88bbf0d (diff)
downloadeclipse.jdt.core-4ca574a49f709b93b45c75c0fb1b7d28f62e5f6b.tar.gz
eclipse.jdt.core-4ca574a49f709b93b45c75c0fb1b7d28f62e5f6b.tar.xz
eclipse.jdt.core-4ca574a49f709b93b45c75c0fb1b7d28f62e5f6b.zip
3.4 maintenance - Revert fix for 285124
-rw-r--r--org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/SerialVersionUIDTests.java45
-rw-r--r--org.eclipse.jdt.core/META-INF/MANIFEST.MF2
-rw-r--r--org.eclipse.jdt.core/buildnotes_jdt-core.html16
3 files changed, 1 insertions, 62 deletions
diff --git a/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/SerialVersionUIDTests.java b/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/SerialVersionUIDTests.java
index b018fe1825..da4e964693 100644
--- a/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/SerialVersionUIDTests.java
+++ b/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/SerialVersionUIDTests.java
@@ -162,49 +162,4 @@ public void test007() {
JavacTestOptions.Excuse.EclipseWarningConfiguredAsError
);
}
-//https://bugs.eclipse.org/bugs/show_bug.cgi?id=285124
-public void test008() {
- this.runConformTest(
- new String[] {
- "X.java",
- "public class X extends javax.rmi.CORBA.Stub {\n" +
- " public String[] _ids() { return null; }\n" +
- "}"
- },
- ""
- );
-}
-//https://bugs.eclipse.org/bugs/show_bug.cgi?id=285124
-public void test009() {
- this.runConformTest(
- new String[] {
- "X.java",
- "public class X extends Y {\n" +
- " public String[] _ids() { return null; }\n" +
- "}",
- "Y.java",
- "public abstract class Y extends javax.rmi.CORBA.Stub {\n" +
- "}"
- },
- ""
- );
-}
-//https://bugs.eclipse.org/bugs/show_bug.cgi?id=285124
-public void test010() {
- this.runConformTest(
- new String[] {
- "X.java",
- "public class X extends Y {\n" +
- " public String[] _ids() { return null; }\n" +
- "}",
- "Y.java",
- "public abstract class Y extends Z {\n" +
- "}",
- "Z.java",
- "public abstract class Z extends javax.rmi.CORBA.Stub {\n" +
- "}"
- },
- ""
- );
-}
}
diff --git a/org.eclipse.jdt.core/META-INF/MANIFEST.MF b/org.eclipse.jdt.core/META-INF/MANIFEST.MF
index 04abacbf54..fa1cd54fb5 100644
--- a/org.eclipse.jdt.core/META-INF/MANIFEST.MF
+++ b/org.eclipse.jdt.core/META-INF/MANIFEST.MF
@@ -3,7 +3,7 @@ Main-Class: org.eclipse.jdt.internal.compiler.batch.Main
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.jdt.core; singleton:=true
-Bundle-Version: 3.4.8.qualifier
+Bundle-Version: 3.4.7.qualifier
Bundle-Activator: org.eclipse.jdt.core.JavaCore
Bundle-Vendor: %providerName
Bundle-Localization: plugin
diff --git a/org.eclipse.jdt.core/buildnotes_jdt-core.html b/org.eclipse.jdt.core/buildnotes_jdt-core.html
index b635b7ddc1..162ab1fd10 100644
--- a/org.eclipse.jdt.core/buildnotes_jdt-core.html
+++ b/org.eclipse.jdt.core/buildnotes_jdt-core.html
@@ -38,22 +38,6 @@
</td>
</tr>
</table>
-<a name="v_898_R34x"></a>
-<hr><h1>
-Eclipse Platform Build Notes<br>
-Java development tools core</h1>
-Eclipse SDK 3.4.3 - %date% - 3.4.3
-<br>Project org.eclipse.jdt.core v_898_R34x
-(<a href="http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.jdt.core/?only_with_tag=v_898_R34x">cvs</a>).
-<h2>What's new in this drop</h2>
-<ul>
-<li>Incremented org.eclipse.jdt.core plug-in ID to "3.4.8"</li>
-</ul>
-
-<h3>Problem Reports Fixed</h3>
-<a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=285124">285124</a>
-serialVersionUID still causes error/warning
-
<a name="v_897_R34x"></a>
<hr><h1>
Eclipse Platform Build Notes<br>

Back to the top