diff options
author | Robin Stevens <[email protected]> | 2016-05-04 12:19:04 +0200 |
---|---|---|
committer | Robin Stevens <[email protected]> | 2016-05-04 12:19:04 +0200 |
commit | 23b6a8dc92521f762248011b74f4d5028472583d (patch) | |
tree | b520d80f35ad06c9a0f3cb82ed619d623a2ce080 | |
parent | 45cc13c4d68fb3137b741cbc39ea653c15db2f66 (diff) |
Typo in javadoc of GLDrawable#isRealized
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/GLDrawable.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/GLDrawable.java b/src/jogl/classes/com/jogamp/opengl/GLDrawable.java index c801ba463..a4a9d2e06 100644 --- a/src/jogl/classes/com/jogamp/opengl/GLDrawable.java +++ b/src/jogl/classes/com/jogamp/opengl/GLDrawable.java @@ -134,7 +134,7 @@ public interface GLDrawable extends NativeSurfaceHolder { public void setRealized(boolean realized); /** - * Returns <code>true</code> if this drawable is realized, otherwise <code>true</code>. + * Returns <code>true</code> if this drawable is realized, otherwise <code>false</code>. * <p> * A drawable can be realized and unrealized via {@link #setRealized(boolean)}. * </p> |