Skip to content

Commit beddaf4

Browse files
committed
Remove unnecessary throws clause
1 parent 85ee212 commit beddaf4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

platform-tests/src/test/java/org/junit/platform/commons/support/ReflectionSupportTests.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ void tryToReadFieldValuePreconditions() throws Exception {
224224
}
225225

226226
@Test
227-
void findMethodDelegates() throws Exception {
227+
void findMethodDelegates() {
228228
assertEquals(ReflectionUtils.findMethod(Boolean.class, "valueOf", String.class.getName()),
229229
ReflectionSupport.findMethod(Boolean.class, "valueOf", String.class.getName()));
230230

@@ -233,7 +233,7 @@ void findMethodDelegates() throws Exception {
233233
}
234234

235235
@Test
236-
void findMethodPreconditions() throws Exception {
236+
void findMethodPreconditions() {
237237
assertPreconditionViolationException("Class",
238238
() -> ReflectionSupport.findMethod(null, "valueOf", String.class.getName()));
239239
assertPreconditionViolationExceptionForString("Method name",
@@ -280,13 +280,13 @@ void findMethodsPreconditions() {
280280
}
281281

282282
@Test
283-
void findNestedClassesDelegates() throws Exception {
283+
void findNestedClassesDelegates() {
284284
assertEquals(ReflectionUtils.findNestedClasses(ClassWithNestedClasses.class, ReflectionUtils::isStatic),
285285
ReflectionSupport.findNestedClasses(ClassWithNestedClasses.class, ReflectionUtils::isStatic));
286286
}
287287

288288
@Test
289-
void findNestedClassesPreconditions() throws Exception {
289+
void findNestedClassesPreconditions() {
290290
assertPreconditionViolationException("Class",
291291
() -> ReflectionSupport.findNestedClasses(null, ReflectionUtils::isStatic));
292292
assertPreconditionViolationException("Predicate",

0 commit comments

Comments
 (0)