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

@@ -47,7 +47,7 @@ public abstract class AbstractFallbackJCacheOperationSource implements JCacheOpe
* Canonical value held in cache to indicate no caching attribute was
* found for this method and we don't need to look again.
*/
private final static Object NULL_CACHING_ATTRIBUTE = new Object();
private static final Object NULL_CACHING_ATTRIBUTE = new Object();
protected final Log logger = LogFactory.getLog(getClass());

View File

@@ -34,7 +34,7 @@ import org.springframework.util.ObjectUtils;
@SuppressWarnings("serial")
public class MailSendException extends MailException {
private transient final Map<Object, Exception> failedMessages;
private final transient Map<Object, Exception> failedMessages;
@Nullable
private Exception[] messageExceptions;