Skip to content

Commit d6fb7f9

Browse files
committed
[ignore] Fix order of 'static final' keywords
1 parent e007686 commit d6fb7f9

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

exist-core/src/main/java/org/exist/client/ClientFrame.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -93,15 +93,15 @@ public class ClientFrame extends JFrame implements WindowFocusListener, KeyListe
9393

9494
private static final long serialVersionUID = 1L;
9595

96-
public final static String CUT = Messages.getString("ClientFrame.0"); //$NON-NLS-1$
97-
public final static String COPY = Messages.getString("ClientFrame.1"); //$NON-NLS-1$
98-
public final static String PASTE = Messages.getString("ClientFrame.2"); //$NON-NLS-1$
96+
public static final String CUT = Messages.getString("ClientFrame.0"); //$NON-NLS-1$
97+
public static final String COPY = Messages.getString("ClientFrame.1"); //$NON-NLS-1$
98+
public static final String PASTE = Messages.getString("ClientFrame.2"); //$NON-NLS-1$
9999

100-
public final static int MAX_DISPLAY_LENGTH = 512000;
101-
public final static int MAX_HISTORY = 50;
100+
public static final int MAX_DISPLAY_LENGTH = 512000;
101+
public static final int MAX_HISTORY = 50;
102102

103-
private final static SimpleAttributeSet promptAttrs = new SimpleAttributeSet();
104-
private final static SimpleAttributeSet defaultAttrs = new SimpleAttributeSet();
103+
private static final SimpleAttributeSet promptAttrs = new SimpleAttributeSet();
104+
private static final SimpleAttributeSet defaultAttrs = new SimpleAttributeSet();
105105
static {
106106
StyleConstants.setForeground(promptAttrs, Color.blue);
107107
StyleConstants.setBold(promptAttrs, true);

0 commit comments

Comments
 (0)