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 2012/03/23 16:33:47 UTC

svn commit: r1304444 - /cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/jms_spring_config/src/main/java/com/example/customerservice/server/CustomerServiceSpringServer.java

Author: dkulp
Date: Fri Mar 23 15:33:46 2012
New Revision: 1304444

URL: http://svn.apache.org/viewvc?rev=1304444&view=rev
Log:
Merged revisions 1304440 via  git cherry-pick from
https://svn.apache.org/repos/asf/cxf/trunk

........
  r1304440 | dkulp | 2012-03-23 11:31:22 -0400 (Fri, 23 Mar 2012) | 2 lines

  Fix checkstyle issue

........

Modified:
    cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/jms_spring_config/src/main/java/com/example/customerservice/server/CustomerServiceSpringServer.java

Modified: cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/jms_spring_config/src/main/java/com/example/customerservice/server/CustomerServiceSpringServer.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/jms_spring_config/src/main/java/com/example/customerservice/server/CustomerServiceSpringServer.java?rev=1304444&r1=1304443&r2=1304444&view=diff
==============================================================================
--- cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/jms_spring_config/src/main/java/com/example/customerservice/server/CustomerServiceSpringServer.java (original)
+++ cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/jms_spring_config/src/main/java/com/example/customerservice/server/CustomerServiceSpringServer.java Fri Mar 23 15:33:46 2012
@@ -26,7 +26,8 @@ public class CustomerServiceSpringServer
     }
 
     public static void main(String args[]) throws Exception {
-        ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext("server-applicationContext.xml");
+        ClassPathXmlApplicationContext ctx 
+            = new ClassPathXmlApplicationContext("server-applicationContext.xml");
         System.in.read();
         ctx.stop();
         ctx.destroy();