Add missing space in GradleStyleMessagerRenderer.render()

In `GradleStyleMessagerRenderer.render` method, when there is `location` pointing to some file and coordinates `line:column = 0:0`, then a space between the location and the message was not printed.
#KT-61737 Fixed
This commit is contained in:
Rustam Musin
2023-09-06 01:03:27 +01:00
committed by Space Team
parent 96a798d400
commit 1efa9abf57
@@ -24,8 +24,9 @@ class GradleStyleMessageRenderer : MessageRenderer {
val fileUri = File(path).toPath().toUri()
append("$fileUri")
if (line > 0 && column > 0) {
append(":$line:$column ")
append(":$line:$column")
}
append(' ')
}
append(message)