mirror of https://github.com/apache/openjpa.git
Fixed typo in conditional
git-svn-id: https://svn.apache.org/repos/asf/incubator/openjpa/trunk@424833 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7f6a84d433
commit
775c33d4fc
|
@ -526,8 +526,8 @@ public class DataCacheStoreManager
|
||||||
_inserts = new LinkedList();
|
_inserts = new LinkedList();
|
||||||
_inserts.add(sm);
|
_inserts.add(sm);
|
||||||
} else if (_inserts != null &&
|
} else if (_inserts != null &&
|
||||||
sm.getPCState() == PCState.PNEWDELETED ||
|
(sm.getPCState() == PCState.PNEWDELETED ||
|
||||||
sm.getPCState() == PCState.PNEWFLUSHEDDELETED)
|
sm.getPCState() == PCState.PNEWFLUSHEDDELETED))
|
||||||
_inserts.remove(sm);
|
_inserts.remove(sm);
|
||||||
else if (sm.getPCState() == PCState.PDIRTY) {
|
else if (sm.getPCState() == PCState.PDIRTY) {
|
||||||
if (_updates == null)
|
if (_updates == null)
|
||||||
|
|
Loading…
Reference in New Issue