We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c5dcc6 commit ae9952aCopy full SHA for ae9952a
opengrok-indexer/src/main/java/org/opengrok/indexer/history/History.java
@@ -141,4 +141,9 @@ public boolean equals(Object o) {
141
public int hashCode() {
142
return getHistoryEntries().hashCode() * getRenamedFiles().hashCode();
143
}
144
+
145
+ @Override
146
+ public String toString() {
147
+ return this.getHistoryEntries().toString() + ", renamed files: " + this.getRenamedFiles().toString();
148
+ }
149
0 commit comments