File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed
src/main/kotlin/graphql/kickstart/tools Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
2- <project xmlns =" http://maven.apache.org/POM/4.0.0"
3- xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4- xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
53 <modelVersion >4.0.0</modelVersion >
64
75 <groupId >com.graphql-java-kickstart</groupId >
86 <artifactId >graphql-java-tools</artifactId >
9- <version >6.1.0 -SNAPSHOT</version >
7+ <version >6.1.1 -SNAPSHOT</version >
108 <packaging >jar</packaging >
119
1210 <name >GraphQL Java Tools</name >
311309 </goals >
312310 <configuration >
313311 <rules >
314- <dependencyConvergence />
312+ <dependencyConvergence />
315313 </rules >
316314 </configuration >
317315 </execution >
Original file line number Diff line number Diff line change @@ -12,5 +12,5 @@ interface TypeDefinitionFactory {
1212 *
1313 * @return any new definitions that should be added
1414 */
15- fun create (existing : List <Definition <* >>): List <Definition <* >>
15+ fun create (existing : MutableList <Definition <* >>): List <Definition <* >>
1616}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import graphql.language.*
55
66class RelayConnectionFactory : TypeDefinitionFactory {
77
8- override fun create (existing : List <Definition <* >>): List <Definition <* >> {
8+ override fun create (existing : MutableList <Definition <* >>): List <Definition <* >> {
99 val definitions = mutableListOf<Definition <* >>()
1010 val definitionsByName = existing.filterIsInstance<TypeDefinition <* >>()
1111 .associateBy { it.name }
You can’t perform that action at this time.
0 commit comments