File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed
model-datastructure/src/commonMain/kotlin/org/modelix/model/persistent Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -24,12 +24,20 @@ package org.modelix.model.persistent
24
24
* Each of the separators should be unique and not appear in the output of SerializationUtil.escape (URL encode)
25
25
*/
26
26
object Separators {
27
- const val LEVEL1 = " /" // Between parts of top level elements stored in the key-value store: CPVersion, CPNode, CPHamt*
28
- const val LEVEL2 = " ," // between elements of the operation list
27
+ /* * Between parts of top level elements stored in the key-value store: CPVersion, CPNode, CPHamt* */
28
+ const val LEVEL1 = " /"
29
+
30
+ /* * Between elements of the operation list */
31
+ const val LEVEL2 = " ,"
32
+
29
33
const val LEVEL3 = " ;"
30
- const val LEVEL4 = " :" // lists inside operation parts
31
34
32
- const val MAPPING = " =" // for properties and references
35
+ /* * For lists inside operation parts */
36
+ const val LEVEL4 = " :" //
37
+
38
+ /* * For properties and references */
39
+ const val MAPPING = " ="
40
+
33
41
const val OPS = LEVEL2
34
42
const val OP_PARTS = LEVEL3
35
43
}
You can’t perform that action at this time.
0 commit comments