committed wrong version of pNewProviisonal handling

git-svn-id: https://svn.apache.org/repos/asf/incubator/openjpa/trunk@450937 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Kim 2006-09-28 17:47:23 +00:00
parent bd340fbe15
commit d833950424

View File

@ -369,10 +369,6 @@ public class StateManagerImpl
return (_flags & FLAG_FLUSHED_DIRTY) > 0;
}
public boolean wasPreFlushed() {
return (_flags & FLAG_PRE_FLUSHED) > 0;
}
public BitSet getLoaded() {
return _loaded;
}
@ -2637,9 +2633,6 @@ public class StateManagerImpl
* for all strategies that don't require flushing.
*/
void preFlush(boolean logical, OpCallbacks call) {
if ((_flags & FLAG_PRE_FLUSHED) != 0)
return;
if (isPersistent()) {
fireLifecycleEvent(LifecycleEvent.BEFORE_STORE);
_flags |= FLAG_PRE_FLUSHED;