Skip to content

Commit

Permalink
HHH-6998 - Expand CustomEntityDirtinessStrategy to define findDirty
Browse files Browse the repository at this point in the history
  • Loading branch information
sebersole committed Jan 28, 2012
1 parent 91847d7 commit bfb7fc8
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -592,7 +592,12 @@ public void resetDirty(Object entity, EntityPersister persister, Session session
}

@Override
public void findDirty(Object entity, DirtyCheckContext dirtyCheckContext) {
public void findDirty(
Object entity,
EntityPersister persister,
Session session,
DirtyCheckContext dirtyCheckContext) {
// todo : implement proper method body
}
};
}
Expand Down

0 comments on commit bfb7fc8

Please sign in to comment.