* Remove READONLY attribute from native HopObject methods.

This commit is contained in:
hns 2006-08-04 08:31:41 +00:00
parent f5b90c23f1
commit 2c2e9fbbb5

View file

@ -76,7 +76,7 @@ public class HopObject extends ScriptableObject implements Wrapper, PropertyReco
*/
public static HopObject init(RhinoCore core)
throws PropertyException {
int attributes = READONLY | DONTENUM | PERMANENT;
int attributes = DONTENUM | PERMANENT;
// create prototype object
HopObject proto = new HopObject("HopObject", core);