Commit b5352291 by Tom Tromey Committed by Tom Tromey

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
parent 1919a4e7
2002-01-27 Tom Tromey <tromey@redhat.com> 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 * verify.cc (class _Jv_BytecodeVerifier): Removed `FIXME' comment
and to-do list. and to-do list.
(state::merge): Use current class' class loader. (state::merge): Use current class' class loader.
......
/* Copyright (C) 1999, 2000 Free Software Foundation /* Copyright (C) 1999, 2000, 2002 Free Software Foundation
This file is part of libjava. This file is part of libjava.
...@@ -73,6 +73,6 @@ public abstract class InputEvent extends ComponentEvent ...@@ -73,6 +73,6 @@ public abstract class InputEvent extends ComponentEvent
consumed = true; consumed = true;
} }
private long when; long when;
private int modifiers; int modifiers;
} }
/* Copyright (C) 2000 Free Software Foundation /* Copyright (C) 2000, 2002 Free Software Foundation
This file is part of libjava. This file is part of libjava.
...@@ -106,8 +106,6 @@ public class MouseEvent extends InputEvent ...@@ -106,8 +106,6 @@ public class MouseEvent extends InputEvent
this.y += y; this.y += y;
} }
private long when;
private int modifiers;
private int x; private int x;
private int y; private int y;
private int clickCount; private int clickCount;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment