Skip to content

Commit

Permalink
HSEARCH-4184 Formatting fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Yoann Rodière <yoann@hibernate.org>
  • Loading branch information
yrodiere authored and fax4ever committed Mar 5, 2021
1 parent dedd278 commit 7d3e7c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Expand Up @@ -33,8 +33,8 @@ public String toString() {
* @param collector A collector for entities that should be reindexed.
* @param dirty A value that is dirty to some extent.
* @param context The set of dirty paths in the object passed to the root reindexing resolver
* (resolvers may delegate to other resolvers, but they will always pass the same dirtiness state to delegates).
* {@code null} can be passed to mean "no information", in which case all paths are considered dirty.
* (resolvers may delegate to other resolvers, but they will always pass the same dirtiness state to delegates).
* {@code null} can be passed to mean "no information", in which case all paths are considered dirty.
*/
public abstract void resolveEntitiesToReindex(PojoReindexingCollector collector,
T dirty, PojoImplicitReindexingResolverRootContext context);
Expand Down
Expand Up @@ -174,6 +174,7 @@ void planLoading() {
loadingOrdinal = root.loadingPlan().planLoading( typeContext().typeIdentifier(), identifier );
}
}

void resolveDirty() {
if ( shouldResolveToReindex ) {
shouldResolveToReindex = false; // Avoid infinite looping
Expand Down Expand Up @@ -211,6 +212,6 @@ private void addDirtyPaths(BitSet newDirtyPaths) {
protected enum EntityStatus {
UNKNOWN,
PRESENT,
ABSENT;
ABSENT
}
}

0 comments on commit 7d3e7c8

Please sign in to comment.