--- old/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/FindProperty.java 2015-12-10 13:51:19.364614844 +0100 +++ new/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/FindProperty.java 2015-12-10 13:51:19.224614845 +0100 @@ -218,13 +218,6 @@ * Get the property value from self as object. * @return the property value */ - public long getLongValue() { - return property.getLongValue(getGetterReceiver(), getOwner()); - } - /** - * Get the property value from self as object. - * @return the property value - */ public double getDoubleValue() { return property.getDoubleValue(getGetterReceiver(), getOwner()); } @@ -246,16 +239,6 @@ property.setValue(getSetterReceiver(), getOwner(), value, strict); } - /** - * Set the property value in self. - * - * @param value the new value - * @param strict strict flag - */ - public void setValue(final long value, final boolean strict) { - property.setValue(getSetterReceiver(), getOwner(), value, strict); - } - /** * Set the property value in self. *