From ca3012b877ce4ded0043a9610dbe127c9dbb99e9 Mon Sep 17 00:00:00 2001 From: Joseph Cloutier Date: Wed, 20 Dec 2023 23:03:02 -0500 Subject: [PATCH] Convert single to double quotes. The convention, according to haxe-checkstyle, is to use double quotes unless single quotes are specifically required. --- src/lime/tools/ConfigData.hx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/lime/tools/ConfigData.hx b/src/lime/tools/ConfigData.hx index 6d49d45f4..4109f539c 100644 --- a/src/lime/tools/ConfigData.hx +++ b/src/lime/tools/ConfigData.hx @@ -34,7 +34,7 @@ abstract ConfigData(Dynamic) to Dynamic from Dynamic public function exists(id:String):Bool { - var tree = id.split('.'); + var tree = id.split("."); if (tree.length <= 1) { @@ -60,7 +60,7 @@ abstract ConfigData(Dynamic) to Dynamic from Dynamic public function get(id:String):ConfigData { - var tree = id.split('.'); + var tree = id.split("."); if (tree.length <= 1) { @@ -84,7 +84,7 @@ abstract ConfigData(Dynamic) to Dynamic from Dynamic public function getArray(id:String, defaultValue:Array = null):Array { - var tree = id.split('.'); + var tree = id.split("."); var array:Array = null; if (tree.length <= 1) @@ -307,7 +307,7 @@ abstract ConfigData(Dynamic) to Dynamic from Dynamic if (StringTools.startsWith(elem.name, "config:")) { - var items = elem.name.split(':'); + var items = elem.name.split(":"); bucketType = items[1]; } @@ -414,7 +414,7 @@ abstract ConfigData(Dynamic) to Dynamic from Dynamic public function push(id:String, value:Dynamic):Void { - var tree = id.split('.'); + var tree = id.split("."); if (tree.length <= 1) { @@ -470,7 +470,7 @@ abstract ConfigData(Dynamic) to Dynamic from Dynamic public function set(id:String, value:Dynamic):Void { - var tree = id.split('.'); + var tree = id.split("."); if (tree.length <= 1) {