diff options
Diffstat (limited to 'libjava/java/awt/dnd/Autoscroll.java')
-rw-r--r-- | libjava/java/awt/dnd/Autoscroll.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libjava/java/awt/dnd/Autoscroll.java b/libjava/java/awt/dnd/Autoscroll.java index e7d3e28..5c52338 100644 --- a/libjava/java/awt/dnd/Autoscroll.java +++ b/libjava/java/awt/dnd/Autoscroll.java @@ -55,7 +55,7 @@ public interface Autoscroll * This method returns the Insets describing the autoscrolling region or * border relative to the geometry of the implementing Component */ - public Insets getAutoscrollInsets (); + Insets getAutoscrollInsets (); /** * Notify the Component to autoscroll @@ -63,5 +63,7 @@ public interface Autoscroll * @param location A Point indicating the location of the cursor that * triggered this operation */ - public void autoscroll (Point location); + void autoscroll (Point location); + } // interface Autoscroll + |