Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
Revert "minor refactoring: use public visible API instead on calling …
Browse files Browse the repository at this point in the history
…internal private stuff"

This reverts commit 1eb54d2, that causes SchemalessSpec to fail.
  • Loading branch information
sarmbruster committed Aug 21, 2011
1 parent dbcd8b8 commit 4fd1e0e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -253,7 +253,7 @@ public boolean isDirty(Object instance) {
return false;
}

Object entry = getCachedEntry(persister.getPersistentEntity(), id, true);
Object entry = getEntryCache(instance.getClass(), false).get(id);
return ((NativeEntryEntityPersister)persister).isDirty(instance, entry);
}

Expand Down

0 comments on commit 4fd1e0e

Please sign in to comment.