Author: sebb
Date: Sat Sep 14 09:48:41 2013
New Revision: 1523201
URL: http://svn.apache.org/r1523201
Log:
Useless ;
Modified:
commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/ri/compiler/TestFunctions.java
commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/ri/model/container/ContainerModelTest.java
Modified:
commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/ri/compiler/TestFunctions.java
URL:
http://svn.apache.org/viewvc/commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/ri/compiler/TestFunctions.java?rev=1523201&r1=1523200&r2=1523201&view=diff
==============================================================================
---
commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/ri/compiler/TestFunctions.java
(original)
+++
commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/ri/compiler/TestFunctions.java
Sat Sep 14 09:48:41 2013
@@ -118,7 +118,7 @@ public class TestFunctions {
if (!(element instanceof String)) {
throw new RuntimeException("Invalid argument");
}
- };
+ }
return col.size();
}
Modified:
commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/ri/model/container/ContainerModelTest.java
URL:
http://svn.apache.org/viewvc/commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/ri/model/container/ContainerModelTest.java?rev=1523201&r1=1523200&r2=1523201&view=diff
==============================================================================
---
commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/ri/model/container/ContainerModelTest.java
(original)
+++
commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/ri/model/container/ContainerModelTest.java
Sat Sep 14 09:48:41 2013
@@ -44,7 +44,7 @@ public class ContainerModelTest extends
public void setValue(Object value) {
throw new UnsupportedOperationException();
}
- };
+ }
public class ListContainer implements Container
{