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:
Marc Prud'hommeaux 2006-07-23 22:01:21 +00:00
parent 7f6a84d433
commit 775c33d4fc
1 changed files with 2 additions and 2 deletions

View File

@ -526,8 +526,8 @@ public class DataCacheStoreManager
_inserts = new LinkedList();
_inserts.add(sm);
} else if (_inserts != null &&
sm.getPCState() == PCState.PNEWDELETED ||
sm.getPCState() == PCState.PNEWFLUSHEDDELETED)
(sm.getPCState() == PCState.PNEWDELETED ||
sm.getPCState() == PCState.PNEWFLUSHEDDELETED))
_inserts.remove(sm);
else if (sm.getPCState() == PCState.PDIRTY) {
if (_updates == null)