aboutsummaryrefslogtreecommitdiffstats
path: root/src/newt
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2015-08-02 05:04:54 +0200
committerSven Gothel <[email protected]>2015-08-02 05:04:54 +0200
commitda1a4cc5bc4a7fda0605709b61a63564b9070378 (patch)
treecbafba9a0160e1310a8bda06813a98314ba06840 /src/newt
parent24b646d387b3d85467bb22763b016a556d665707 (diff)
Fix commit 24b646d387b3d85467bb22763b016a556d665707: Add missing semicolon
Diffstat (limited to 'src/newt')
-rw-r--r--src/newt/classes/jogamp/newt/WindowImpl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newt/classes/jogamp/newt/WindowImpl.java b/src/newt/classes/jogamp/newt/WindowImpl.java
index 6225e71fd..2a05f2ce6 100644
--- a/src/newt/classes/jogamp/newt/WindowImpl.java
+++ b/src/newt/classes/jogamp/newt/WindowImpl.java
@@ -3755,7 +3755,7 @@ public abstract class WindowImpl implements Window, NEWTEventConsumer
for(remaining = timeOut; 0 < remaining && _visible != visible; remaining-=10 ) {
try { Thread.sleep(10); } catch (final InterruptedException ie) {}
display.dispatchMessagesNative(); // status up2date
- _visible = stateMask.get(STATE_VISIBLE)
+ _visible = stateMask.get(STATE_VISIBLE);
}
if( visible != _visible ) {
final String msg = "Visibility not reached as requested within "+timeOut+"ms : requested "+visible+", is "+_visible;