[go: nahoru, domu]

Skip to content

Commit

Permalink
Fix println which printed to the wrong stream
Browse files Browse the repository at this point in the history
  • Loading branch information
valaphee committed Apr 6, 2022
1 parent 09c33f6 commit 875bb89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/com/valaphee/protod/ProtoWriter.kt
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ class ProtoWriter(
}"
}
}
} ?: println("Unresolvable field .${options.descriptorForType.fullName} ${unknownField.key}")
} ?: kotlin.io.println("Unresolvable field .${options.descriptorForType.fullName} ${unknownField.key}")
}
return generatedOptions
}
Expand Down

0 comments on commit 875bb89

Please sign in to comment.