mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-25 06:03:59 +08:00
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:
parent
1919a4e7e0
commit
b535229173
@ -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.
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user