JythonHelper icon indicating copy to clipboard operation
JythonHelper copied to clipboard

Signature of method 'x.actionPerformed()' does not match signature of the base method in class 'AbstractAction' same with 'ComponentAdapter'

Open yogi1967 opened this issue 4 years ago • 0 comments

For some reason the stubs created by JythonHelper causes loads of this errors for me? If I zap the stubs, the error goes away.

from javax.swing import AbstractAction
class X(AbstractAction):
    def actionPerformed(self, event):
        pass
Screenshot 2021-07-30 at 07 40 11

same with java.awt.event.ComponentAdapter

yogi1967 avatar Jul 30 '21 06:07 yogi1967