From 334e4375afbc6d4251e072d71805319f91018a37 Mon Sep 17 00:00:00 2001 From: Gabriel Omar Cotelli Date: Fri, 14 Jun 2024 19:24:54 -0300 Subject: [PATCH] Fix GS 64 incompatibility --- source/Hyperspace-Model/CURIE.class.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Hyperspace-Model/CURIE.class.st b/source/Hyperspace-Model/CURIE.class.st index a530a4c..1b6b1fc 100644 --- a/source/Hyperspace-Model/CURIE.class.st +++ b/source/Hyperspace-Model/CURIE.class.st @@ -19,7 +19,7 @@ Class { CURIE class >> fromString: string [ | segments | - segments := string splitOn: $:. + segments := $: split: string. AssertionChecker enforce: [ segments size = 2 ] because: [ 'Cannot create a CURIE from "<1s>"' expandMacrosWith: string ]