src/jdk.scripting.nashorn/share/classes/jdk/nashorn/api/scripting/JSObject.java

Print this page

        

@@ -35,11 +35,10 @@
  * operations like obj[i], obj.foo, obj.func(), delete obj.foo will be glued
  * to appropriate method call of this interface.
  *
  * @since 1.8u40
  */
-@jdk.Exported
 public interface JSObject {
     /**
      * Call this object as a JavaScript function. This is equivalent to
      * 'func.apply(thiz, args)' in JavaScript.
      *