Polish: reorder the modifiers to comply with the Java Language Specification.

This commit is contained in:
igor-suhorukov
2018-03-08 19:36:00 +03:00
committed by Juergen Hoeller
parent a02aafe5fe
commit 0f7485b01d
50 changed files with 124 additions and 124 deletions

View File

@@ -32,7 +32,7 @@ import org.springframework.expression.spel.SpelMessage;
*/
public class BeanReference extends SpelNodeImpl {
private final static String FACTORY_BEAN_PREFIX = "&";
private static final String FACTORY_BEAN_PREFIX = "&";
private final String beanName;

View File

@@ -68,7 +68,7 @@ public class SpelCompiler implements Opcodes {
private static final Log logger = LogFactory.getLog(SpelCompiler.class);
private final static int CLASSES_DEFINED_LIMIT = 100;
private static final int CLASSES_DEFINED_LIMIT = 100;
// A compiler is created for each classloader, it manages a child class loader of that
// classloader and the child is used to load the compiled expressions.

View File

@@ -125,7 +125,7 @@ enum TokenKind {
final char[] tokenChars;
final private boolean hasPayload; // is there more to this token than simply the kind
private final boolean hasPayload; // is there more to this token than simply the kind
private TokenKind(String tokenString) {