We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c25ed3e commit 97b6358Copy full SHA for 97b6358
1 file changed
src/main/java/graphql/schema/PropertyDataFetcher.java
@@ -48,8 +48,6 @@ private Object getPropertyViaGetterUsingPrefix(Object object, GraphQLOutputType
48
Method method = object.getClass().getMethod(getterName);
49
return method.invoke(object);
50
51
- } catch (NoSuchMethodException e) {
52
- throw e;
53
} catch (IllegalAccessException e) {
54
throw new RuntimeException(e);
55
} catch (InvocationTargetException e) {
0 commit comments