#BUGFIX by stefan
authorStefan Vogel <sv@exept.de>
Fri, 20 Jan 2017 19:51:23 +0100
changeset 4268 fff51d808999
parent 4267 0808f2e18115
child 4269 c5eb06e78a7d
#BUGFIX by stefan class: HierarchicalURI changed: #hash (send #bitXor: instead of #xor:)
HierarchicalURI.st
--- a/HierarchicalURI.st	Fri Jan 20 13:36:09 2017 +0100
+++ b/HierarchicalURI.st	Fri Jan 20 19:51:23 2017 +0100
@@ -300,7 +300,9 @@
 
 hash
 
-    ^ pathSegments hash xor:query hash
+    ^ pathSegments hash bitXor:query hash
+
+    "Modified: / 20-01-2017 / 19:49:30 / stefan"
 ! !
 
 !HierarchicalURI methodsFor:'copying'!