You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by ff...@apache.org on 2013/04/09 06:08:47 UTC

svn commit: r1465874 - in /cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/fortest/inherit: A.java C.java

Author: ffang
Date: Tue Apr  9 04:08:46 2013
New Revision: 1465874

URL: http://svn.apache.org/r1465874
Log:
[CXF-4850]commit to expose the problem with CXF-4850

Modified:
    cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/fortest/inherit/A.java
    cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/fortest/inherit/C.java

Modified: cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/fortest/inherit/A.java
URL: http://svn.apache.org/viewvc/cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/fortest/inherit/A.java?rev=1465874&r1=1465873&r2=1465874&view=diff
==============================================================================
--- cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/fortest/inherit/A.java (original)
+++ cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/fortest/inherit/A.java Tue Apr  9 04:08:46 2013
@@ -46,4 +46,10 @@ public class A implements B {
     public String bye(String bye) {
         return bye;
     }
+
+    @Override
+    public String hello() {
+        // TODO Auto-generated method stub
+        return null;
+    }
 }
\ No newline at end of file

Modified: cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/fortest/inherit/C.java
URL: http://svn.apache.org/viewvc/cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/fortest/inherit/C.java?rev=1465874&r1=1465873&r2=1465874&view=diff
==============================================================================
--- cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/fortest/inherit/C.java (original)
+++ cxf/trunk/tools/javato/ws/src/test/java/org/apache/cxf/tools/fortest/inherit/C.java Tue Apr  9 04:08:46 2013
@@ -21,4 +21,5 @@ package org.apache.cxf.tools.fortest.inh
 public interface C {
     String hello(String hello);
     String bye(String bye);
+    String hello();
 }
\ No newline at end of file