Skip to content

Commit

Permalink
Address review comment
Browse files Browse the repository at this point in the history
  • Loading branch information
fmeum committed May 24, 2023
1 parent 080fb3e commit 22e7a42
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ public static <T> String describedNestedSetFingerprint(
return "<empty>";
}
StringBuilder sb = new StringBuilder();
sb.append("order: ").append(nestedSet.getOrder()).append('\n');
sb.append("order: ").append(nestedSet.getOrder()).append(" (fingerprinting considers internal" +
" nested set structure, which is not reflected in values reported below)\n");
ImmutableList<T> list = nestedSet.toList();
sb.append("size: ").append(list.size()).append('\n');
for (T item : list) {
Expand Down

0 comments on commit 22e7a42

Please sign in to comment.