From 928366f04f441e82841690032b8bc75528e055a4 Mon Sep 17 00:00:00 2001 From: Michael Koch Date: Sat, 11 Oct 2003 18:18:22 +0000 Subject: AppletInitializer.java, [...]: Removed redundant modifiers. 2003-10-11 Michael Koch * java/beans/AppletInitializer.java, java/beans/BeanInfo.java, java/beans/Customizer.java, java/beans/DesignMode.java, java/beans/PropertyEditor.java, java/beans/Visibility.java: Removed redundant modifiers. From-SVN: r72349 --- libjava/java/beans/Visibility.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libjava/java/beans/Visibility.java') diff --git a/libjava/java/beans/Visibility.java b/libjava/java/beans/Visibility.java index f474f4c5e03..82c0fa17a9f 100644 --- a/libjava/java/beans/Visibility.java +++ b/libjava/java/beans/Visibility.java @@ -58,21 +58,21 @@ public interface Visibility { * Tells whether the Bean can run without a GUI or not. * @return false if Bean can run without a GUI, else true. */ - public abstract boolean needsGui(); + boolean needsGui(); /** * Tells whether Bean is trying not to use the GUI. * If needsGui() is true, this method should always return false. * @return true if definitely not using GUI, otherwise false. */ - public abstract boolean avoidingGui(); + boolean avoidingGui(); /** * Tells the Bean not to use GUI methods. * If needsGUI() is false, then after this method is called, * avoidingGui() should return true. */ - public abstract void dontUseGui(); + void dontUseGui(); /** * Tells the Bean it may use the GUI. @@ -81,5 +81,5 @@ public interface Visibility { * false, avoidingGui() may return true or false after this method * is called. */ - public abstract void okToUseGui(); + void okToUseGui(); } -- cgit v1.2.3