Skip to content

Commit cfd9fd6

Browse files
committed
Polishing
1 parent c508a70 commit cfd9fd6

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

spring-expression/src/main/java/org/springframework/expression/spel/ast/SpelNodeImpl.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@ public abstract class SpelNodeImpl implements SpelNode, Opcodes {
4848
private SpelNodeImpl parent;
4949

5050
/**
51-
* Indicates the type descriptor for the result of this expression node. This is
52-
* set as soon as it is known. For a literal node it is known immediately. For
53-
* a property access or method invocation it is known after one evaluation of
51+
* Indicates the type descriptor for the result of this expression node.
52+
* This is set as soon as it is known. For a literal node it is known immediately.
53+
* For a property access or method invocation it is known after one evaluation of
5454
* that node.
55-
* The descriptor is like the bytecode form but is slightly easier to work with. It
56-
* does not include the trailing semicolon (for non array reference types). Some examples:
57-
* Ljava/lang/String, I, [I
55+
* <p>The descriptor is like the bytecode form but is slightly easier to work with.
56+
* It does not include the trailing semicolon (for non array reference types).
57+
* Some examples: Ljava/lang/String, I, [I
5858
*/
5959
protected volatile String exitTypeDescriptor;
6060

@@ -183,7 +183,7 @@ protected ValueRef getValueRef(ExpressionState state) throws EvaluationException
183183
* Check whether a node can be compiled to bytecode. The reasoning in each node may
184184
* be different but will typically involve checking whether the exit type descriptor
185185
* of the node is known and any relevant child nodes are compilable.
186-
* @return true if this node can be compiled to bytecode
186+
* @return {@code true} if this node can be compiled to bytecode
187187
*/
188188
public boolean isCompilable() {
189189
return false;

spring-jms/src/main/java/org/springframework/jms/listener/DefaultMessageListenerContainer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2013 the original author or authors.
2+
* Copyright 2002-2014 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -900,7 +900,7 @@ protected void recoverAfterListenerSetupFailure() {
900900
* @see #stop()
901901
*/
902902
protected void refreshConnectionUntilSuccessful() {
903-
BackOffExecution execution = backOff.start();
903+
BackOffExecution execution = this.backOff.start();
904904
while (isRunning()) {
905905
try {
906906
if (sharedConnectionEnabled()) {

0 commit comments

Comments
 (0)