Remove old unused annotations PiperOrigin-RevId: 332401911 Change-Id: I3d22b08dbc750b5a6f4e314b42af0a96d752000b
diff --git a/user/build.xml b/user/build.xml index 3d67ae8..0ca16d6 100755 --- a/user/build.xml +++ b/user/build.xml
@@ -23,8 +23,8 @@ <property name="gwt.junit.testcase.dev.includes" value="${gwt.junit.testcase.includes}"/> <condition property="gwt.junit.testcase.dev.excludes" - value="**/JSONSuite.class,**/RunAsyncSuite.class,**/*CompilerSuite.class,**/*JsInteropSuite.class,**/*JreSuite.class,**/OptimizedOnly*,**/*Java8Suite.class" - else="**/JSONSuite.class,**/RunAsyncSuite.class,**/*CompilerSuite.class,**/*JsInteropSuite.class,**/*JreSuite.class,**/OptimizedOnly*"> + value="**/EmulSuite.class,**/JSONSuite.class,**/RunAsyncSuite.class,**/*CompilerSuite.class,**/*JsInteropSuite.class,**/*JreSuite.class,**/OptimizedOnly*,**/*Java8Suite.class" + else="**/EmulSuite.class,**/JSONSuite.class,**/RunAsyncSuite.class,**/*CompilerSuite.class,**/*JsInteropSuite.class,**/*JreSuite.class,**/OptimizedOnly*"> <isfalse value="${isJava8}" /> </condition>
diff --git a/user/test/com/google/gwt/emultest/java/lang/SystemTest.java b/user/test/com/google/gwt/emultest/java/lang/SystemTest.java index aaf7f2f..090424d 100644 --- a/user/test/com/google/gwt/emultest/java/lang/SystemTest.java +++ b/user/test/com/google/gwt/emultest/java/lang/SystemTest.java
@@ -15,8 +15,6 @@ */ package com.google.gwt.emultest.java.lang; -import com.google.gwt.junit.DoNotRunWith; -import com.google.gwt.junit.Platform; import com.google.gwt.junit.client.GWTTestCase; import com.google.gwt.testing.TestUtils; @@ -312,7 +310,6 @@ assertNotSame(System.identityHashCode(o), System.identityHashCode(new Object())); } - @DoNotRunWith(Platform.Devel) public void testGetProperty() { if (TestUtils.isJvm()) { return;
diff --git a/user/test/com/google/gwt/emultest/java/util/ObjectsTest.java b/user/test/com/google/gwt/emultest/java/util/ObjectsTest.java index cc1e4e5..6ad573a 100644 --- a/user/test/com/google/gwt/emultest/java/util/ObjectsTest.java +++ b/user/test/com/google/gwt/emultest/java/util/ObjectsTest.java
@@ -15,8 +15,6 @@ */ package com.google.gwt.emultest.java.util; -import com.google.gwt.junit.DoNotRunWith; -import com.google.gwt.junit.Platform; import com.google.gwt.junit.client.GWTTestCase; import java.util.Comparator; @@ -86,7 +84,6 @@ assertFalse(Objects.deepEquals(new int[][]{new int[]{1}}, new double[][]{new double[]{1}})); } - @DoNotRunWith(Platform.Devel) // Objects.equals(String, String) public void testEquals() { assertTrue(Objects.equals(null, null)); assertFalse(Objects.equals(null, "not null"));