You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by ni...@apache.org on 2011/05/16 08:57:48 UTC

svn commit: r1103627 - /cxf/branches/2.3.x-fixes/systests/jaxws/src/test/java/org/apache/cxf/systest/jaxws/ArrayServiceImpl.java

Author: ningjiang
Date: Mon May 16 06:57:48 2011
New Revision: 1103627

URL: http://svn.apache.org/viewvc?rev=1103627&view=rev
Log:
Remove the usless @override annotation which will confuse the complier

Modified:
    cxf/branches/2.3.x-fixes/systests/jaxws/src/test/java/org/apache/cxf/systest/jaxws/ArrayServiceImpl.java

Modified: cxf/branches/2.3.x-fixes/systests/jaxws/src/test/java/org/apache/cxf/systest/jaxws/ArrayServiceImpl.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.3.x-fixes/systests/jaxws/src/test/java/org/apache/cxf/systest/jaxws/ArrayServiceImpl.java?rev=1103627&r1=1103626&r2=1103627&view=diff
==============================================================================
--- cxf/branches/2.3.x-fixes/systests/jaxws/src/test/java/org/apache/cxf/systest/jaxws/ArrayServiceImpl.java (original)
+++ cxf/branches/2.3.x-fixes/systests/jaxws/src/test/java/org/apache/cxf/systest/jaxws/ArrayServiceImpl.java Mon May 16 06:57:48 2011
@@ -26,7 +26,6 @@ import javax.jws.WebService;
             endpointInterface = "org.apache.cxf.systest.jaxws.ArrayService")
 public class ArrayServiceImpl implements ArrayService {
 
-    @Override
     public void initValueNotNull(String[] values) {
         System.out.println("values length is " + values.length);
         System.out.println("Got values: " + Arrays.asList(values));