Skip to content

Commit 2ee5b3d

Browse files
committed
Fix deprecated proto method
1 parent 2c3065f commit 2ee5b3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/io/bazel/kotlin/builder/toolchain/CompilationTaskContext.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ class CompilationTaskContext(
9393
header: String,
9494
msg: MessageOrBuilder,
9595
) {
96-
printLines(header, TextFormat.printToString(msg).split("\n"), filterEmpty = true)
96+
printLines(header, TextFormat.printer().printToString(msg).split("\n"), filterEmpty = true)
9797
}
9898

9999
/**

0 commit comments

Comments
 (0)