Skip to content

Commit cda7454

Browse files
committed
fix JavaDoc warnings [no description for @throws]
1 parent 0391e45 commit cda7454

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

src/main/java/org/junit/internal/Classes.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ public Classes() {
2121
* {@link Classes}.
2222
*
2323
* @param className Name of the class.
24-
* @throws ClassNotFoundException
2524
*/
2625
public static Class<?> getClass(String className) throws ClassNotFoundException {
2726
return getClass(className, Classes.class);
@@ -34,7 +33,6 @@ public static Class<?> getClass(String className) throws ClassNotFoundException
3433
*
3534
* @param className Name of the class.
3635
* @param callingClass Class that is requesting a the class
37-
* @throws ClassNotFoundException
3836
* @since 4.13
3937
*/
4038
public static Class<?> getClass(String className, Class<?> callingClass) throws ClassNotFoundException {

src/main/java/org/junit/runner/FilterFactories.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ class FilterFactories {
1616
*
1717
* @param request the request that will be filtered
1818
* @param filterSpec the filter specification
19-
* @throws org.junit.runner.FilterFactory.FilterNotCreatedException
2019
*/
2120
public static Filter createFilterFromFilterSpec(Request request, String filterSpec)
2221
throws FilterFactory.FilterNotCreatedException {

src/main/java/org/junit/runner/notification/SynchronizedRunListener.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ public void testSuiteStarted(Description description) throws Exception {
6464
* <p/>
6565
* Synchronized decorator for {@link RunListener#testSuiteFinished(Description)}.
6666
* @param description the description of the test suite that just ran.
67-
* @throws Exception
6867
* @since 4.13
6968
*/
7069
@Override

0 commit comments

Comments
 (0)