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
3 changed files with 9 additions and 6 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue