< prev index next >

src/java.desktop/share/classes/java/awt/MenuBar.java

Print this page

        

@@ -373,10 +373,11 @@
      * Post an ACTION_EVENT to the target of the MenuPeer
      * associated with the specified keyboard event (on
      * keydown).  Returns true if there is an associated
      * keyboard event.
      */
+    @SuppressWarnings("deprecation")
     boolean handleShortcut(KeyEvent e) {
         // Is it a key event?
         int id = e.getID();
         if (id != KeyEvent.KEY_PRESSED && id != KeyEvent.KEY_RELEASED) {
             return false;
< prev index next >