MouseEvent.java (modifiers): Removed field.

* java/awt/event/MouseEvent.java (modifiers): Removed field.
	(when): Likewise.
	* java/awt/event/InputEvent.java (modifiers, when): Now
	package-private.

From-SVN: r49275
This commit is contained in:
Tom Tromey 2002-01-28 06:34:01 +00:00 committed by Tom Tromey
parent 1919a4e7e0
commit b535229173
3 changed files with 9 additions and 6 deletions

View File

@ -1,5 +1,10 @@
2002-01-27 Tom Tromey <tromey@redhat.com>
* java/awt/event/MouseEvent.java (modifiers): Removed field.
(when): Likewise.
* java/awt/event/InputEvent.java (modifiers, when): Now
package-private.
* verify.cc (class _Jv_BytecodeVerifier): Removed `FIXME' comment
and to-do list.
(state::merge): Use current class' class loader.

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1999, 2000 Free Software Foundation
/* Copyright (C) 1999, 2000, 2002 Free Software Foundation
This file is part of libjava.
@ -73,6 +73,6 @@ public abstract class InputEvent extends ComponentEvent
consumed = true;
}
private long when;
private int modifiers;
long when;
int modifiers;
}

View File

@ -1,4 +1,4 @@
/* Copyright (C) 2000 Free Software Foundation
/* Copyright (C) 2000, 2002 Free Software Foundation
This file is part of libjava.
@ -106,8 +106,6 @@ public class MouseEvent extends InputEvent
this.y += y;
}
private long when;
private int modifiers;
private int x;
private int y;
private int clickCount;