You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2011/12/08 20:35:45 UTC

svn commit: r1212068 - in /cxf/branches/2.3.x-fixes: ./ systests/jaxws/src/test/java/org/apache/cxf/systest/jaxws/ServerMixedStyle.java

Author: dkulp
Date: Thu Dec  8 19:35:45 2011
New Revision: 1212068

URL: http://svn.apache.org/viewvc?rev=1212068&view=rev
Log:
Merged revisions 1211263 via svnmerge from 
https://svn.us.apache.org/repos/asf/cxf/branches/2.4.x-fixes

........
  r1211263 | ningjiang | 2011-12-06 20:35:04 -0500 (Tue, 06 Dec 2011) | 1 line
  
  Removed the static  modifier which breaks the build with maven3
........

Modified:
    cxf/branches/2.3.x-fixes/   (props changed)
    cxf/branches/2.3.x-fixes/systests/jaxws/src/test/java/org/apache/cxf/systest/jaxws/ServerMixedStyle.java

Propchange: cxf/branches/2.3.x-fixes/
            ('svn:mergeinfo' removed)

Propchange: cxf/branches/2.3.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: cxf/branches/2.3.x-fixes/systests/jaxws/src/test/java/org/apache/cxf/systest/jaxws/ServerMixedStyle.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.3.x-fixes/systests/jaxws/src/test/java/org/apache/cxf/systest/jaxws/ServerMixedStyle.java?rev=1212068&r1=1212067&r2=1212068&view=diff
==============================================================================
--- cxf/branches/2.3.x-fixes/systests/jaxws/src/test/java/org/apache/cxf/systest/jaxws/ServerMixedStyle.java (original)
+++ cxf/branches/2.3.x-fixes/systests/jaxws/src/test/java/org/apache/cxf/systest/jaxws/ServerMixedStyle.java Thu Dec  8 19:35:45 2011
@@ -54,7 +54,7 @@ public class ServerMixedStyle extends Ab
     }
     
     @WebService(targetNamespace = "http://example.com") 
-    public static interface MixedTest { 
+    public interface MixedTest { 
         @WebMethod(operationName = "Simple") 
         @WebResult(name = "SimpleResponse", targetNamespace = "http://example.com") 
         @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)