diff --git a/src/main/java/graphql/schema/PropertyDataFetcher.java b/src/main/java/graphql/schema/PropertyDataFetcher.java index b7452c430c..fd61fb7c32 100644 --- a/src/main/java/graphql/schema/PropertyDataFetcher.java +++ b/src/main/java/graphql/schema/PropertyDataFetcher.java @@ -77,6 +77,7 @@ private PropertyDataFetcher(Function function) { * * * @param propertyName the name of the property to retrieve + * @param the type of result * * @return a new PropertyDataFetcher using the provided function as its source of values */ @@ -100,6 +101,7 @@ public static PropertyDataFetcher fetching(String propertyName) { * * @param function the function to use to obtain a value from the source object * @param the type of the source object + * @param the type of result * * @return a new PropertyDataFetcher using the provided function as its source of values */