diff options
author | Sven Gothel <[email protected]> | 2019-04-09 23:46:31 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2019-04-09 23:46:31 +0200 |
commit | 6df8cd254d2a82910477f9e5d9bf7a742157de7a (patch) | |
tree | 164b80deae292756e3e9ee39ebf2953077b84a9c | |
parent | 0a0673f71d50715999aabd815803c7c383e28ec3 (diff) |
Cleanup AWTRobotUtil 3: TestUtil.WindowClosingListener must be public
-rw-r--r-- | src/test/com/jogamp/opengl/test/junit/util/TestUtil.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/util/TestUtil.java b/src/test/com/jogamp/opengl/test/junit/util/TestUtil.java index cba8446f4..c4b95f06c 100644 --- a/src/test/com/jogamp/opengl/test/junit/util/TestUtil.java +++ b/src/test/com/jogamp/opengl/test/junit/util/TestUtil.java @@ -34,7 +34,7 @@ import com.jogamp.newt.Window; import jogamp.newt.WindowImplAccess; public abstract class TestUtil { - interface WindowClosingListener { + public static interface WindowClosingListener { void reset(); public int getWindowClosingCount(); public int getWindowClosedCount(); |