Revert changes to exclude non-transactional states from dirty checking

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@676642 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Pinaki Poddar 2008-07-14 16:54:05 +00:00
parent 854eda8a19
commit 94814adc39
1 changed files with 1 additions and 3 deletions

View File

@ -837,8 +837,6 @@ public class StateManagerImpl
return false;
if (isNew() && !isFlushed())
return false;
if (!isTransactional())
return false;
return true;
}