You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xindice-dev@xml.apache.org by vg...@apache.org on 2006/01/12 23:47:40 UTC

svn commit: r368503 - /xml/xindice/trunk/java/src/org/apache/xindice/core/query/XPathQueryResolver.java

Author: vgritsenko
Date: Thu Jan 12 14:47:36 2006
New Revision: 368503

URL: http://svn.apache.org/viewcvs?rev=368503&view=rev
Log:
nits

Modified:
    xml/xindice/trunk/java/src/org/apache/xindice/core/query/XPathQueryResolver.java

Modified: xml/xindice/trunk/java/src/org/apache/xindice/core/query/XPathQueryResolver.java
URL: http://svn.apache.org/viewcvs/xml/xindice/trunk/java/src/org/apache/xindice/core/query/XPathQueryResolver.java?rev=368503&r1=368502&r2=368503&view=diff
==============================================================================
--- xml/xindice/trunk/java/src/org/apache/xindice/core/query/XPathQueryResolver.java (original)
+++ xml/xindice/trunk/java/src/org/apache/xindice/core/query/XPathQueryResolver.java Thu Jan 12 14:47:36 2006
@@ -201,7 +201,7 @@
             this.nsMap = nsMap;
             this.keys = keys;
 
-            Expression ex = null;
+            Expression ex;
 			try {
                 if (nsMap != null) {
                     Node n = nsMap.getContextNode();
@@ -448,7 +448,7 @@
                     else if (name != null) {
                         // Try to use a NameIndex to resolve the path component
                         // can match a wildcard node name here if pattern is "*" then every document matches
-                        if (attr == false && "*".equals(name)) {
+                        if (!attr && "*".equals(name)) {
                             SortedSet set = new TreeSet();
                             RecordSet rs = context.getFiler().getRecordSet();
                             while (rs.hasMoreRecords()) {