You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Several of the classes in javax.swing from OpenJDK8 have the uncompilable condition "(target.WHEN_IN_FOCUSED_WINDOW instanceof ComponentInputMap;) == false && (map instanceof ComponentInputMap;) == false || (condition==1) == false".
Notice the semi-colon.
This is extracted from a @throws "if condition is WHEN_IN_FOCUSED_WINDOW and map is not an instance of ComponentInputMap; or if condition is not one of the legal values specified above".
As best I can tell, this is coming from javax.swing.JComponent.
The text was updated successfully, but these errors were encountered:
Several of the classes in
javax.swing
from OpenJDK8 have the uncompilable condition"(target.WHEN_IN_FOCUSED_WINDOW instanceof ComponentInputMap;) == false && (map instanceof ComponentInputMap;) == false || (condition==1) == false"
.Notice the semi-colon.
This is extracted from a
@throws
"if condition is WHEN_IN_FOCUSED_WINDOW and map is not an instance of ComponentInputMap; or if condition is not one of the legal values specified above"
.As best I can tell, this is coming from
javax.swing.JComponent
.The text was updated successfully, but these errors were encountered: