Skip to content

Commit 95d71d6

Browse files
committed
Merge branch 'master' into 405-upgrade-to-graphql-java-15
# Conflicts: # pom.xml
2 parents 2c62fdc + 313afc5 commit 95d71d6

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

pom.xml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
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>
@@ -311,7 +309,7 @@
311309
</goals>
312310
<configuration>
313311
<rules>
314-
<dependencyConvergence/>
312+
<dependencyConvergence />
315313
</rules>
316314
</configuration>
317315
</execution>

src/main/kotlin/graphql/kickstart/tools/TypeDefinitionFactory.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

src/main/kotlin/graphql/kickstart/tools/relay/RelayConnectionFactory.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import graphql.language.*
55

66
class 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 }

0 commit comments

Comments
 (0)