Polishing

This commit is contained in:
Juergen Hoeller
2019-09-27 10:17:56 +02:00
parent 6a207d0012
commit 2861fc65bd
35 changed files with 108 additions and 121 deletions

View File

@@ -125,9 +125,7 @@ public class TransactionSynchronizationManager {
*/
@Nullable
private Object doGetResource(Object actualKey) {
Map<Object, Object> map = this.transactionContext.getResources();
Object value = map.get(actualKey);
return value;
return this.transactionContext.getResources().get(actualKey);
}
/**