Skip to content

Commit c04e72a

Browse files
authored
remove unused import, fix typo (#6692)
1 parent 87b108f commit c04e72a

File tree

2 files changed

+1
-2
lines changed
  • libraries
    • apollo-api/src/commonMain/kotlin/com/apollographql/apollo/api
    • apollo-ast/src/commonMain/kotlin/com/apollographql/apollo/ast/internal

2 files changed

+1
-2
lines changed

libraries/apollo-api/src/commonMain/kotlin/com/apollographql/apollo/api/CompiledGraphQL.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import com.apollographql.apollo.api.json.ApolloJsonElement
99
import com.apollographql.apollo.api.json.BufferedSinkJsonWriter
1010
import com.apollographql.apollo.api.json.writeAny
1111
import okio.Buffer
12-
import kotlin.jvm.JvmField
1312
import kotlin.jvm.JvmName
1413

1514
sealed class CompiledSelection

libraries/apollo-ast/src/commonMain/kotlin/com/apollographql/apollo/ast/internal/Lexer.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ internal class Lexer(val src: String) {
6161
while (pos < len) {
6262
val c = src[pos]
6363

64-
// do not consume the byte just yet, names and numbers need the first by
64+
// do not consume the byte just yet, names and numbers need the first byte
6565
if (c.isNameStart()) {
6666
return readName()
6767
}

0 commit comments

Comments
 (0)