We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17744ca commit f659204Copy full SHA for f659204
model-datastructure/src/commonMain/kotlin/org/modelix/model/persistent/OperationSerializer.kt
@@ -74,7 +74,7 @@ class OperationSerializer private constructor() {
74
return when {
75
serialized.isNullOrEmpty() -> null
76
serialized.matches(localNodeIdPattern) -> LocalPNodeReference(longFromHex(serialized))
77
- unescape(serialized)!!.matches(globalNodeIdPattern) -> {
+ serialized.matches(globalNodeIdPattern) -> {
78
// This is how PNodeReference was serialized before, but the deserialization of the CPVersion
79
// should fail with this duplicate usage of the '/' separator.
80
// This branch should not be reachable and can be removed if we are absolutely sure about that.
0 commit comments