--- old/src/jdk/nashorn/internal/runtime/FindProperty.java 2016-01-20 14:14:50.211064318 +0100 +++ new/src/jdk/nashorn/internal/runtime/FindProperty.java 2016-01-20 14:14:50.111064319 +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. *