Skip to content

Commit e74755e

Browse files
committed
Fix javadoc warnings
Signed-off-by: solonovamax <solonovamax@12oclockpoint.com>
1 parent ccec9cb commit e74755e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/test/java/org/kohsuke/github/ArchTests.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@ public static void beforeClass() {
9090
assertThat(classFiles.size(), greaterThan(0));
9191
}
9292

93+
/**
94+
* Test naming conventions
95+
*/
9396
@Test
9497
public void testRequireFollowingNamingConvention() {
9598
final String reason = "This project follows standard java naming conventions and does not allow the use of underscores in names.";
@@ -196,6 +199,8 @@ public void testRequireUseOfOnlySpecificApacheCommons() {
196199
/**
197200
* Have names containing unless.
198201
*
202+
* @param <T>
203+
* the generic type
199204
* @param infix
200205
* the infix
201206
* @param unlessPredicates
@@ -279,6 +284,11 @@ public static <T> DescribedPredicate<T> unless(DescribedPredicate<? super T> fir
279284
return new UnlessPredicate(first, second);
280285
}
281286

287+
/**
288+
* Enum constants.
289+
*
290+
* @return the described predicate
291+
*/
282292
private DescribedPredicate<? super JavaField> enumConstants() {
283293
return new EnumConstantFieldPredicate();
284294
}

0 commit comments

Comments
 (0)