@@ -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