Skip to content

Commit 7465e71

Browse files
committed
fix(Javadoc): Corrected Javadoc Maven plugin errros
1 parent 3763ed7 commit 7465e71

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

graphql-jpa-query-schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaExecutor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public GraphQLJpaExecutor(GraphQLSchema graphQLSchema) {
5858
* Creates instance using GraphQLSchema and GraphQLJpaExecutorContextFactory
5959
*
6060
* @param graphQLSchema instance
61-
* @param GraphQLJpaExecutorContextFactory contextFactory
61+
* @param GraphQLExecutorContextFactory contextFactory
6262
*/
6363
public GraphQLJpaExecutor(GraphQLSchema graphQLSchema,
6464
GraphQLExecutorContextFactory contextFactory) {

graphql-jpa-query-schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/GraphQLJpaQueryFactory.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1547,7 +1547,7 @@ protected String[] idClassAttributeNames() {
15471547
* Fetches the value of the given SingularAttribute on the given
15481548
* entity.
15491549
*
1550-
* @see http://stackoverflow.com/questions/7077464/how-to-get-singularattribute-mapped-value-of-a-persistent-object
1550+
* http://stackoverflow.com/questions/7077464/how-to-get-singularattribute-mapped-value-of-a-persistent-object
15511551
*/
15521552
@SuppressWarnings("unchecked")
15531553
protected <EntityType, FieldType> FieldType getAttributeValue(EntityType entity, SingularAttribute<EntityType, FieldType> field) {
@@ -1570,7 +1570,7 @@ protected <EntityType, FieldType> FieldType getAttributeValue(EntityType entity,
15701570
* Fetches the value of the given SingularAttribute on the given
15711571
* entity.
15721572
*
1573-
* @see http://stackoverflow.com/questions/7077464/how-to-get-singularattribute-mapped-value-of-a-persistent-object
1573+
* http://stackoverflow.com/questions/7077464/how-to-get-singularattribute-mapped-value-of-a-persistent-object
15741574
*/
15751575
@SuppressWarnings("unchecked")
15761576
protected <EntityType, FieldType> FieldType getAttributeValue(EntityType entity, PluralAttribute<EntityType, ?, FieldType> field) {

0 commit comments

Comments
 (0)