Skip to content

Commit b84b668

Browse files
committed
OCD on the JavaDoc
1 parent 41d67d7 commit b84b668

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/main/java/graphql/execution/ExecutionStrategy.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -768,6 +768,7 @@ protected ExecutionResult handleNonNullException(ExecutionContext executionConte
768768
* @param executionContext the execution context in play
769769
* @param parameters contains the parameters holding the fields to be executed and source object
770770
* @param fieldDefinition the field definition to build type info for
771+
* @param fieldContainer the field container
771772
*
772773
* @return a new type info
773774
*/

src/main/java/graphql/util/Breadcrumb.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
* A list of Breadcrumbs is used to identify the exact location of a specific node inside a tree.
1212
*
13-
* @param <T>
13+
* @param <T> the generic type of object
1414
*/
1515
@PublicApi
1616
public class Breadcrumb<T> {

src/main/java/graphql/util/NodeAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Adapts an arbitrary class to behave as a node.
1010
* We are using an Adapter because we don't want to require Nodes to implement a certain Interface.
1111
*
12-
* @param <T>
12+
* @param <T> the generic type of object
1313
*/
1414
@PublicApi
1515
public interface NodeAdapter<T> {

0 commit comments

Comments
 (0)