OSDN Git Service

libjava/ChangeLog:
[pf3gnuchains/gcc-fork.git] / libjava / classpath / gnu / xml / xpath / FloorFunction.java
index c03c0e7..bbf56c9 100644 (file)
@@ -54,9 +54,9 @@ final class FloorFunction
 
   final Expr arg;
 
-  FloorFunction(List args)
+  FloorFunction(List<Expr> args)
   {
-    this((Expr) args.get(0));
+    this(args.get(0));
   }
 
   FloorFunction(Expr arg)
@@ -64,6 +64,7 @@ final class FloorFunction
     this.arg = arg;
   }
 
+  @Override
   public Object evaluate(Node context, int pos, int len)
   {
     Object val = arg.evaluate(context, pos, len);