aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarvey Harrison <[email protected]>2013-11-18 10:54:01 -0800
committerHarvey Harrison <[email protected]>2013-11-18 10:54:01 -0800
commit417675219de9fb5fceca5771812366ae8768b658 (patch)
tree3cce1b2427062211b42532ee0898a894a8cd7e21
parentd8f7418f170aba4703df2b11d5ae11598f71a796 (diff)
jogl: add missing @Override annotation in NewtCanvasAWT
Signed-off-by: Harvey Harrison <[email protected]>
-rw-r--r--src/newt/classes/com/jogamp/newt/awt/NewtCanvasAWT.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/newt/classes/com/jogamp/newt/awt/NewtCanvasAWT.java b/src/newt/classes/com/jogamp/newt/awt/NewtCanvasAWT.java
index 49bd0d778..35f4fca73 100644
--- a/src/newt/classes/com/jogamp/newt/awt/NewtCanvasAWT.java
+++ b/src/newt/classes/com/jogamp/newt/awt/NewtCanvasAWT.java
@@ -228,6 +228,7 @@ public class NewtCanvasAWT extends java.awt.Canvas implements WindowClosingProto
/** Must run on AWT-EDT non-blocking, since it invokes tasks on AWT-EDT w/ waiting otherwise. */
private final Runnable awtClearSelectedMenuPath = new Runnable() {
+ @Override
public void run() {
MenuSelectionManager.defaultManager().clearSelectedPath();
}
@@ -460,6 +461,7 @@ public class NewtCanvasAWT extends java.awt.Canvas implements WindowClosingProto
*/
public final void destroy() {
AWTEDTExecutor.singleton.invoke(true, new Runnable() {
+ @Override
public void run() {
destroyImpl(false /* removeNotify */, false /* windowClosing */);
} } );