Polishing

This commit is contained in:
Juergen Hoeller 2014-09-29 17:35:23 +02:00
parent c508a70c15
commit cfd9fd6863
2 changed files with 9 additions and 9 deletions

View File

@ -48,13 +48,13 @@ public abstract class SpelNodeImpl implements SpelNode, Opcodes {
private SpelNodeImpl parent;
/**
* Indicates the type descriptor for the result of this expression node. This is
* set as soon as it is known. For a literal node it is known immediately. For
* a property access or method invocation it is known after one evaluation of
* Indicates the type descriptor for the result of this expression node.
* This is set as soon as it is known. For a literal node it is known immediately.
* For a property access or method invocation it is known after one evaluation of
* that node.
* The descriptor is like the bytecode form but is slightly easier to work with. It
* does not include the trailing semicolon (for non array reference types). Some examples:
* Ljava/lang/String, I, [I
* <p>The descriptor is like the bytecode form but is slightly easier to work with.
* It does not include the trailing semicolon (for non array reference types).
* Some examples: Ljava/lang/String, I, [I
*/
protected volatile String exitTypeDescriptor;
@ -183,7 +183,7 @@ public abstract class SpelNodeImpl implements SpelNode, Opcodes {
* Check whether a node can be compiled to bytecode. The reasoning in each node may
* be different but will typically involve checking whether the exit type descriptor
* of the node is known and any relevant child nodes are compilable.
* @return true if this node can be compiled to bytecode
* @return {@code true} if this node can be compiled to bytecode
*/
public boolean isCompilable() {
return false;

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2013 the original author or authors.
* Copyright 2002-2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -900,7 +900,7 @@ public class DefaultMessageListenerContainer extends AbstractPollingMessageListe
* @see #stop()
*/
protected void refreshConnectionUntilSuccessful() {
BackOffExecution execution = backOff.start();
BackOffExecution execution = this.backOff.start();
while (isRunning()) {
try {
if (sharedConnectionEnabled()) {