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

@ -42,9 +42,9 @@ import javax.swing.event.ListSelectionListener;
public interface ListSelectionModel
{
final static int SINGLE_SELECTION = 0;
final static int SINGLE_INTERVAL_SELECTION = 1;
final static int MULTIPLE_INTERVAL_SELECTION = 1;
int SINGLE_SELECTION = 0;
int SINGLE_INTERVAL_SELECTION = 1;
int MULTIPLE_INTERVAL_SELECTION = 1;
void setSelectionMode(int a);
int getSelectionMode();