summaryrefslogtreecommitdiff
path: root/gnu/xml/xpath/BooleanFunction.java
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/xml/xpath/BooleanFunction.java')
-rw-r--r--gnu/xml/xpath/BooleanFunction.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/xml/xpath/BooleanFunction.java b/gnu/xml/xpath/BooleanFunction.java
index f661b2ac2..05e0bd5bc 100644
--- a/gnu/xml/xpath/BooleanFunction.java
+++ b/gnu/xml/xpath/BooleanFunction.java
@@ -1,4 +1,4 @@
-/* BooleanFunction.java --
+/* BooleanFunction.java --
Copyright (C) 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -60,7 +60,7 @@ final class BooleanFunction
{
final Expr arg;
-
+
BooleanFunction(List<Expr> args)
{
this(args.get(0));
@@ -70,7 +70,7 @@ final class BooleanFunction
{
this.arg = arg;
}
-
+
public Object evaluate(Node context, int pos, int len)
{
Object val = arg.evaluate(context, pos, len);
@@ -86,10 +86,10 @@ final class BooleanFunction
{
return arg.references(var);
}
-
+
public String toString()
{
return "boolean(" + arg + ")";
}
-
+
}