Polish: reorder the modifiers to comply with the Java Language Specification.
This commit is contained in:
committed by
Juergen Hoeller
parent
a02aafe5fe
commit
0f7485b01d
@@ -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;
|
||||
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user