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 0d46541 commit 148dcb2Copy full SHA for 148dcb2
opengrok-indexer/src/main/java/org/opengrok/indexer/history/Annotation.java
@@ -24,6 +24,7 @@
24
*/
25
package org.opengrok.indexer.history;
26
27
+import org.jetbrains.annotations.VisibleForTesting;
28
import org.opengrok.indexer.logger.LoggerFactory;
29
import org.opengrok.indexer.util.Color;
30
import org.opengrok.indexer.util.LazilyInstantiate;
@@ -91,6 +92,7 @@ public Set<String> getRevisions() {
91
92
return ret;
93
}
94
95
+ @VisibleForTesting
96
Set<String> getAuthors() {
97
Set<String> ret = new HashSet<>();
98
for (Line ln : this.lines) {
0 commit comments