assertion on Window.isCreated

This commit is contained in:
Brian Matzon 2004-02-05 16:33:31 +00:00
parent 2124b34f59
commit 3cdd9516f3
3 changed files with 9 additions and 0 deletions

View file

@ -234,6 +234,9 @@ public class Mouse {
* @throws Exception if the mouse could not be created for any reason
*/
public static void create() throws Exception {
assert Window.isCreated() : "Window must be created prior to creating mouse";
if (!initialized) {
initialize();
}