From 34ea3f383e1650a4474b8d62fe137b1915791586 Mon Sep 17 00:00:00 2001 From: hns Date: Thu, 18 Jan 2001 18:53:32 +0000 Subject: [PATCH] used equalsIgnoreCase instead of equals --- src/helma/framework/core/ESNode.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/helma/framework/core/ESNode.java b/src/helma/framework/core/ESNode.java index 049675ec..1d31c1be 100644 --- a/src/helma/framework/core/ESNode.java +++ b/src/helma/framework/core/ESNode.java @@ -400,9 +400,9 @@ public class ESNode extends ObjectPrototype { } // this is not very nice, but as a hack we return the id of a node as node.__id__ - if ("__id__".equals (propertyName)) + if ("__id__".equalsIgnoreCase (propertyName)) return new ESString (node.getID ()); - if ("__prototype__".equals (propertyName)) + if ("__prototype__".equalsIgnoreCase (propertyName)) return new ESString (node.getPrototype ()); // this _may_ do a relational query if properties are mapped to a relational type.