Skip to content

Commit 8bedfed

Browse files
committed
Remove unused RuntimePropertyRegistry.
... leftover from separate compile. Change-Id: I5c3e82fc41840f4dc43f1cd906898345255a1dd0
1 parent 91539f7 commit 8bedfed

File tree

4 files changed

+1
-147
lines changed

4 files changed

+1
-147
lines changed

dev/core/src/com/google/gwt/dev/jjs/ast/JProgram.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,7 @@ public boolean visit(JNode x, Context ctx) {
7676
}
7777

7878
public static final Set<String> CODEGEN_TYPES_SET = Sets.newLinkedHashSet(Arrays.asList(
79-
"com.google.gwt.lang.Array", "com.google.gwt.lang.Cast",
80-
"com.google.gwt.lang.RuntimePropertyRegistry", "com.google.gwt.lang.Exceptions",
79+
"com.google.gwt.lang.Array", "com.google.gwt.lang.Cast", "com.google.gwt.lang.Exceptions",
8180
"com.google.gwt.lang.LongLib", "com.google.gwt.lang.Stats", "com.google.gwt.lang.Util",
8281
"java.lang.Object"));
8382

dev/core/super/com/google/gwt/lang/RuntimePropertyRegistry.java

-83
This file was deleted.

dev/core/test/com/google/gwt/lang/RuntimePropertyRegistryTest.java

-60
This file was deleted.

user/test/com/google/gwt/core/CoreJreSuite.java

-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
import com.google.gwt.core.client.impl.AsyncFragmentLoaderTest;
1919
import com.google.gwt.core.client.testing.StubSchedulerTest;
2020
import com.google.gwt.dev.StrictModeTest;
21-
import com.google.gwt.lang.RuntimePropertyRegistryTest;
2221

2322
import junit.framework.Test;
2423
import junit.framework.TestSuite;
@@ -30,7 +29,6 @@ public class CoreJreSuite {
3029
public static Test suite() {
3130
TestSuite suite = new TestSuite("All core tests");
3231
suite.addTestSuite(AsyncFragmentLoaderTest.class);
33-
suite.addTestSuite(RuntimePropertyRegistryTest.class);
3432
suite.addTestSuite(StrictModeTest.class);
3533
suite.addTestSuite(StubSchedulerTest.class);
3634
return suite;

0 commit comments

Comments
 (0)