diff --git a/spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/support/EntityGraphFactory.java b/spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/support/EntityGraphFactory.java index 445efa956..97bf99381 100644 --- a/spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/support/EntityGraphFactory.java +++ b/spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/support/EntityGraphFactory.java @@ -40,9 +40,11 @@ abstract class EntityGraphFactory { /** * Create an {@link EntityGraph} from a collection of properties. * - * @param entityManager - * @param domainType - * @param properties + * @param entityManager the {@link EntityManager} used to {@link EntityManager#createEntityGraph(String) create} the + * {@link EntityGraph}. + * @param domainType the type to create the {@link EntityGraph} for. + * @param properties the properties to add {@link EntityGraph#addAttributeNodes(String...) nodes} and + * {@link EntityGraph#addSubgraph(String) subgraphs} for. */ public static EntityGraph create(EntityManager entityManager, Class domainType, Set properties) {