Skip to content

Commit 8c3c9fd

Browse files
committed
change report output a bit
1 parent f6db612 commit 8c3c9fd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/nl/melp/linkchecker/LinkChecker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ public Map<URI, Integer> run() throws InterruptedException {
249249

250250
public void report() {
251251
for (Map.Entry<String, Set<URI>> entry : invalidUrls.entrySet()) {
252-
System.out.println("INVALID: " + entry.getKey() + " (referred by following urls:)");
252+
System.out.println("INVALID: " + entry.getKey() + " - referred by following urls");
253253
for (URI referredBy : invalidUrls.get(entry.getKey())) {
254254
System.out.println(" + " + referredBy);
255255
}

0 commit comments

Comments
 (0)