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
@@ -26,6 +26,7 @@ class GradleStyleMessageRenderer : MessageRenderer {
if (line > 0 && column > 0) { if (line > 0 && column > 0) {
append(":$line:$column") append(":$line:$column")
} }
append(' ')
} }
append(message) append(message)