Message2036

Author johnrsisson
Recipients
Date 2007-12-02.23:37:11
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
In Eclipse, it is showing the Py.tojava(PyObject o, Class c) method as deprecated, but looking at the code it appears that the deprecation flag is being picked up from  (the code above in) the JavaDoc comment for the "interp" static variable, which has been commented out.

The fix appears to be to change (in Py.java):

    /** @deprecated **/
    //public static InterpreterState interp;

To:


    // @deprecated 
    //public static InterpreterState interp;

History
Date User Action Args
2008-02-20 17:18:08adminlinkissue1842984 messages
2008-02-20 17:18:08admincreate