Skip to content

Commit

Permalink
fix JavaDoc warnings [no description for @throws]
Browse files Browse the repository at this point in the history
  • Loading branch information
cpoerschke committed Dec 30, 2021
1 parent 0391e45 commit cda7454
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/main/java/org/junit/internal/Classes.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ public Classes() {
* {@link Classes}.
*
* @param className Name of the class.
* @throws ClassNotFoundException
*/
public static Class<?> getClass(String className) throws ClassNotFoundException {
return getClass(className, Classes.class);
Expand All @@ -34,7 +33,6 @@ public static Class<?> getClass(String className) throws ClassNotFoundException
*
* @param className Name of the class.
* @param callingClass Class that is requesting a the class
* @throws ClassNotFoundException
* @since 4.13
*/
public static Class<?> getClass(String className, Class<?> callingClass) throws ClassNotFoundException {
Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/junit/runner/FilterFactories.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ class FilterFactories {
*
* @param request the request that will be filtered
* @param filterSpec the filter specification
* @throws org.junit.runner.FilterFactory.FilterNotCreatedException
*/
public static Filter createFilterFromFilterSpec(Request request, String filterSpec)
throws FilterFactory.FilterNotCreatedException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ public void testSuiteStarted(Description description) throws Exception {
* <p/>
* Synchronized decorator for {@link RunListener#testSuiteFinished(Description)}.
* @param description the description of the test suite that just ran.
* @throws Exception
* @since 4.13
*/
@Override
Expand Down

0 comments on commit cda7454

Please sign in to comment.