Skip to content

Commit 6a0a8f3

Browse files
committed
License is now valid
1 parent 51e822f commit 6a0a8f3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/main/java/graphql/annotations/processor/typeFunctions/IterableFunction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ public GraphQLType buildType(boolean input, Class<?> aClass, AnnotatedType annot
6262
}
6363
return new GraphQLList(defaultTypeFunction.buildType(input, klass, arg, container));
6464
}
65-
}
65+
}

src/test/java/graphql/annotations/GraphQLIterableTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/**
22
* Copyright 2016 Yurii Rashkovskii
3-
* <p>
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
* <p>
7+
*
88
* http://www.apache.org/licenses/LICENSE-2.0
9-
* <p>
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -145,4 +145,4 @@ private Object getQueryResultAtIndex(ExecutionResult result, String queryName, i
145145
private Object getQueryResultAtCell(ExecutionResult result, String queryName, int rowIndex, int columnIndex) {
146146
return (((ArrayList) (getQueryResultAtIndex(result, queryName, rowIndex))).get(columnIndex));
147147
}
148-
}
148+
}

0 commit comments

Comments
 (0)