Tweak Map-based repository for performance (serialization of a StepExecution is expensive and unnecessary)

This commit is contained in:
dsyer
2010-04-07 11:05:46 +00:00
parent d04a904eaf
commit 8782405974
5 changed files with 29 additions and 31 deletions

View File

@@ -74,7 +74,7 @@ public class TransactionAwareProxyFactory<T> {
private TransactionAwareProxyFactory(T target, boolean appendOnly) {
super();
this.target = begin(target);
this.target = target;
this.appendOnly = appendOnly;
}