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

@@ -55,7 +55,7 @@ public abstract class AbstractFallbackTransactionAttributeSource implements Tran
* Canonical value held in cache to indicate no transaction attribute was
* found for this method, and we don't need to look again.
*/
private final static TransactionAttribute NULL_TRANSACTION_ATTRIBUTE = new DefaultTransactionAttribute();
private static final TransactionAttribute NULL_TRANSACTION_ATTRIBUTE = new DefaultTransactionAttribute();
/**