From c54e85dda165308a5cb495cc2601cbbd4b644b77 Mon Sep 17 00:00:00 2001 From: Dominik Przybyl Date: Sat, 21 Oct 2023 12:03:38 +0200 Subject: [PATCH] added data source support --- .../src/main/kotlin/com/cognifide/apm/core/grammar/ApmType.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/aem/core/src/main/kotlin/com/cognifide/apm/core/grammar/ApmType.kt b/app/aem/core/src/main/kotlin/com/cognifide/apm/core/grammar/ApmType.kt index b6d25dbb..361e972a 100644 --- a/app/aem/core/src/main/kotlin/com/cognifide/apm/core/grammar/ApmType.kt +++ b/app/aem/core/src/main/kotlin/com/cognifide/apm/core/grammar/ApmType.kt @@ -67,7 +67,7 @@ data class ApmString(val value: String) : ApmType() { } override fun prettyPrint(depth: Int, prefixDepth: Int): String { - return "\t".repeat(min(depth, prefixDepth)) + "'$value'" + return "\t".repeat(min(depth, prefixDepth)) + "\"$value\"" } }