Skip to content

Commit

Permalink
Merge pull request #5127 from Emkas/resolver
Browse files Browse the repository at this point in the history
DigesterFactory - call static RESOLVER in a static fashion
  • Loading branch information
BalusC authored Jun 24, 2022
2 parents fa7f65c + cad126c commit df1fc8c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ public static DigesterFactory newInstance(boolean isValidating,
VersionListener listener) {
DigesterFactory result = new DigesterFactory(isValidating);
if (null != listener) {
result.RESOLVER.setVersionListener(listener);
RESOLVER.setVersionListener(listener);
versionListener.set(listener);
}

Expand Down

0 comments on commit df1fc8c

Please sign in to comment.