From cfd9fd6863890f87e843b610bb2c5f9c4d81ed46 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Mon, 29 Sep 2014 17:35:23 +0200 Subject: [PATCH] Polishing --- .../expression/spel/ast/SpelNodeImpl.java | 14 +++++++------- .../listener/DefaultMessageListenerContainer.java | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/spring-expression/src/main/java/org/springframework/expression/spel/ast/SpelNodeImpl.java b/spring-expression/src/main/java/org/springframework/expression/spel/ast/SpelNodeImpl.java index 3fd02d78f2..9c46c8f606 100644 --- a/spring-expression/src/main/java/org/springframework/expression/spel/ast/SpelNodeImpl.java +++ b/spring-expression/src/main/java/org/springframework/expression/spel/ast/SpelNodeImpl.java @@ -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 + *

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; diff --git a/spring-jms/src/main/java/org/springframework/jms/listener/DefaultMessageListenerContainer.java b/spring-jms/src/main/java/org/springframework/jms/listener/DefaultMessageListenerContainer.java index 9bd050a3fe..01c04dbdf9 100644 --- a/spring-jms/src/main/java/org/springframework/jms/listener/DefaultMessageListenerContainer.java +++ b/spring-jms/src/main/java/org/springframework/jms/listener/DefaultMessageListenerContainer.java @@ -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()) {