Action.java, [...]: Removed redundant modifiers.

2003-10-12  Michael Koch  <konqueror@gmx.de>

	* javax/swing/Action.java,
	javax/swing/BoundedRangeModel.java,
	javax/swing/CellEditor.java,
	javax/swing/ComboBoxEditor.java,
	javax/swing/ComboBoxModel.java,
	javax/swing/DesktopManager.java,
	javax/swing/JComboBox.java,
	javax/swing/ListCellRenderer.java,
	javax/swing/ListSelectionModel.java,
	javax/swing/MenuElement.java,
	javax/swing/MutableComboBoxModel.java,
	javax/swing/Renderer.java,
	javax/swing/RootPaneContainer.java,
	javax/swing/ScrollPaneConstants.java,
	javax/swing/SingleSelectionModel.java,
	javax/swing/SpinnerModel.java,
	javax/swing/SwingConstants.java,
	javax/swing/UIDefaults.java,
	javax/swing/WindowConstants.java,
	javax/swing/border/Border.java,
	javax/swing/colorchooser/ColorSelectionModel.java:
	Removed redundant modifiers.

From-SVN: r72394
This commit is contained in:
Michael Koch 2003-10-12 13:20:50 +00:00 committed by Michael Koch
parent f5677b1560
commit 134fee658d
22 changed files with 174 additions and 149 deletions

View file

@ -51,22 +51,22 @@ public interface WindowConstants {
/**
* DO_NOTHING_ON_CLOSE
*/
public static final int DO_NOTHING_ON_CLOSE = 0;
int DO_NOTHING_ON_CLOSE = 0;
/**
* HIDE_ON_CLOSE
*/
public static final int HIDE_ON_CLOSE = 1;
int HIDE_ON_CLOSE = 1;
/**
* DISPOSE_ON_CLOSE
*/
public static final int DISPOSE_ON_CLOSE = 2;
int DISPOSE_ON_CLOSE = 2;
/**
* EXIT_ON_CLOSE
*/
public static final int EXIT_ON_CLOSE =3;
int EXIT_ON_CLOSE =3;
} // WindowConstants