< prev index next >

src/jdk/nashorn/internal/runtime/FindProperty.java

Print this page

        

@@ -216,17 +216,10 @@
     }
     /**
      * 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());
     }
     /**
      * Get the property value from self as object.

@@ -246,20 +239,10 @@
         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.
      *
      * @param value the new value
      * @param strict strict flag
      */
     public void setValue(final double value, final boolean strict) {
< prev index next >