Skip to content

Commit c79dccd

Browse files
committed
1 parent 974b15b commit c79dccd

1 file changed

Lines changed: 0 additions & 12 deletions

File tree

src/test/java/org/htmlunit/CodeStyleTest.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,6 @@ private void process(final List<File> files, final List<String> classNames) thro
173173
if (!"package-info.java".equals(file.getName())) {
174174
authorTagAtLeastOne(lines, relativePath);
175175
authorTagNoDuplicates(lines, relativePath);
176-
authorTagRonaldBrill(lines, relativePath);
177176
}
178177
}
179178
}
@@ -862,17 +861,6 @@ private void authorTagNoDuplicates(final List<String> lines, final String path)
862861
}
863862
}
864863

865-
/**
866-
* Checks that the file contains an {@code @author Ronald Brill} tag.
867-
*/
868-
private void authorTagRonaldBrill(final List<String> lines, final String path) {
869-
final boolean hasRonaldBrill = lines.stream()
870-
.anyMatch(line -> line.trim().equals("* @author Ronald Brill"));
871-
if (!hasRonaldBrill) {
872-
addFailure(path, 0, "Missing @author Ronald Brill tag");
873-
}
874-
}
875-
876864
/**
877865
* Verifies that no extra leading spaces (in test code).
878866
*/

0 commit comments

Comments
 (0)