1818package org .htmlunit .xpath ;
1919
2020import javax .xml .transform .TransformerException ;
21+
2122import org .htmlunit .xpath .objects .XObject ;
2223import org .htmlunit .xpath .xml .utils .PrefixResolver ;
2324import org .htmlunit .xpath .xml .utils .PrefixResolverDefault ;
@@ -153,7 +154,7 @@ public static NodeList selectNodeList(
153154 *
154155 * @param contextNode The node to start searching from.
155156 * @param str A valid XPath string.
156- * @return An XObject, which can be used to obtain a string, number, nodelist, etc, should never
157+ * @return An XObject, which can be used to obtain a string, number, nodelist, etc. , should never
157158 * be null.
158159 * @see org.htmlunit.xpath.objects.XObject
159160 * @see org.htmlunit.xpath.objects.XBoolean
@@ -174,7 +175,7 @@ public static XObject eval(final Node contextNode, final String str) throws Tran
174175 * @param contextNode The node to start searching from.
175176 * @param str A valid XPath string.
176177 * @param namespaceNode The node from which prefixes in the XPath will be resolved to namespaces.
177- * @return An XObject, which can be used to obtain a string, number, nodelist, etc, should never
178+ * @return An XObject, which can be used to obtain a string, number, nodelist, etc. , should never
178179 * be null.
179180 * @see org.htmlunit.xpath.objects.XObject
180181 * @see org.htmlunit.xpath.objects.XBoolean
@@ -185,7 +186,7 @@ public static XObject eval(final Node contextNode, final String str) throws Tran
185186 public static XObject eval (final Node contextNode , final String str , final Node namespaceNode )
186187 throws TransformerException {
187188
188- // Since we don't have a XML Parser involved here, install some default support
189+ // Since we don't have an XML Parser involved here, install some default support
189190 // for things like namespaces, etc.
190191 // (Changed from: XPathContext xpathSupport = new XPathContext();
191192 // because XPathContext is weak in a number of areas... perhaps
@@ -224,7 +225,7 @@ public static XObject eval(final Node contextNode, final String str, final Node
224225 * @param str A valid XPath string.
225226 * @param prefixResolver Will be called if the parser encounters namespace prefixes, to resolve
226227 * the prefixes to URLs.
227- * @return An XObject, which can be used to obtain a string, number, nodelist, etc, should never
228+ * @return An XObject, which can be used to obtain a string, number, nodelist, etc. , should never
228229 * be null.
229230 * @see org.htmlunit.xpath.objects.XObject
230231 * @see org.htmlunit.xpath.objects.XBoolean
@@ -236,7 +237,7 @@ public static XObject eval(
236237 final Node contextNode , final String str , final PrefixResolver prefixResolver )
237238 throws TransformerException {
238239
239- // Since we don't have a XML Parser involved here, install some default support
240+ // Since we don't have an XML Parser involved here, install some default support
240241 // for things like namespaces, etc.
241242 // (Changed from: XPathContext xpathSupport = new XPathContext();
242243 // because XPathContext is weak in a number of areas... perhaps
0 commit comments