--- a/langtools/src/share/classes/com/sun/tools/javac/util/Names.java Tue May 27 22:26:53 2014 +0100
+++ b/langtools/src/share/classes/com/sun/tools/javac/util/Names.java Tue May 27 14:23:55 2014 -0400
@@ -317,9 +317,9 @@
protected Name.Table createTable(Options options) {
boolean useUnsharedTable = options.isSet("useUnsharedTable");
if (useUnsharedTable)
- return new UnsharedNameTable(this);
+ return UnsharedNameTable.create(this);
else
- return new SharedNameTable(this);
+ return SharedNameTable.create(this);
}
public void dispose() {