You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2010/11/18 11:45:01 UTC

svn commit: r1036391 - /cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/GenericRestServiceImpl.java

Author: sergeyb
Date: Thu Nov 18 10:45:00 2010
New Revision: 1036391

URL: http://svn.apache.org/viewvc?rev=1036391&view=rev
Log:
Removing @Override annotations for Hudson builds to succeed

Modified:
    cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/GenericRestServiceImpl.java

Modified: cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/GenericRestServiceImpl.java
URL: http://svn.apache.org/viewvc/cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/GenericRestServiceImpl.java?rev=1036391&r1=1036390&r2=1036391&view=diff
==============================================================================
--- cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/GenericRestServiceImpl.java (original)
+++ cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/GenericRestServiceImpl.java Thu Nov 18 10:45:00 2010
@@ -26,12 +26,10 @@ public class GenericRestServiceImpl<T ex
 
     private Map entities = new HashMap();
 
-    @Override
     public T getById(PK id) {
         return (T)entities.get((Long)id);
     }
 
-    @Override
     public PK postEntity(T instance) {
         entities.put(1L, instance);
         return (PK)entities.keySet().iterator().next();