Make inner classes static where possible

Closes gh-22804
This commit is contained in:
Сергей Цыпанов
2019-04-17 17:37:42 +03:00
committed by Sam Brannen
parent 261dcab8ce
commit 18af3892dd
5 changed files with 5 additions and 5 deletions

View File

@@ -617,7 +617,7 @@ public abstract class TransactionAspectSupport implements BeanFactoryAware, Init
* Opaque object used to hold Transaction information. Subclasses
* must pass it back to methods on this class, but not see its internals.
*/
protected final class TransactionInfo {
protected static final class TransactionInfo {
@Nullable
private final PlatformTransactionManager transactionManager;