--- old/src/jdk/nashorn/internal/objects/NativeDate.java 2014-03-17 14:05:41.800415474 +0530 +++ new/src/jdk/nashorn/internal/objects/NativeDate.java 2014-03-17 14:05:41.696414958 +0530 @@ -114,10 +114,6 @@ // initialized by nasgen private static PropertyMap $nasgenmap$; - static PropertyMap getInitialMap() { - return $nasgenmap$; - } - private NativeDate(final double time, final ScriptObject proto, final PropertyMap map) { super(proto, map); final ScriptEnvironment env = Global.getEnv(); @@ -127,7 +123,7 @@ } NativeDate(final double time, final Global global) { - this(time, global.getDatePrototype(), getInitialMap()); + this(time, global.getDatePrototype(), $nasgenmap$); } private NativeDate (final double time) {