Author: janstey
Date: Tue Sep 28 18:38:54 2010
New Revision: 1002314

URL: http://svn.apache.org/viewvc?rev=1002314&view=rev
Log:
checkstyle fixes

Modified:
    
camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/placeholder/SimpleLanguageWithSprinPropertyPlaceholderRoute.java
    
camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/placeholder/SimpleLanguageWithSprinPropertyPlaceholderRouteTest.java

Modified: 
camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/placeholder/SimpleLanguageWithSprinPropertyPlaceholderRoute.java
URL: 
http://svn.apache.org/viewvc/camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/placeholder/SimpleLanguageWithSprinPropertyPlaceholderRoute.java?rev=1002314&r1=1002313&r2=1002314&view=diff
==============================================================================
--- 
camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/placeholder/SimpleLanguageWithSprinPropertyPlaceholderRoute.java
 (original)
+++ 
camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/placeholder/SimpleLanguageWithSprinPropertyPlaceholderRoute.java
 Tue Sep 28 18:38:54 2010
@@ -25,7 +25,7 @@ public class SimpleLanguageWithSprinProp
 
     public void configure() throws Exception {
         from(fromEndpoint)
-        .to(toEndpoint);
+            .to(toEndpoint);
     }
 
     public void setFromEndpoint(String fromEndpoint) {
@@ -35,4 +35,4 @@ public class SimpleLanguageWithSprinProp
     public void setToEndpoint(String toEndpoint) {
         this.toEndpoint = toEndpoint;
     }
-}
\ No newline at end of file
+}

Modified: 
camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/placeholder/SimpleLanguageWithSprinPropertyPlaceholderRouteTest.java
URL: 
http://svn.apache.org/viewvc/camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/placeholder/SimpleLanguageWithSprinPropertyPlaceholderRouteTest.java?rev=1002314&r1=1002313&r2=1002314&view=diff
==============================================================================
--- 
camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/placeholder/SimpleLanguageWithSprinPropertyPlaceholderRouteTest.java
 (original)
+++ 
camel/trunk/components/camel-spring/src/test/java/org/apache/camel/spring/placeholder/SimpleLanguageWithSprinPropertyPlaceholderRouteTest.java
 Tue Sep 28 18:38:54 2010
@@ -16,8 +16,6 @@
  */
 package org.apache.camel.spring.placeholder;
 
-import static org.junit.Assert.assertTrue;
-
 import java.io.File;
 import java.util.Calendar;
 
@@ -31,6 +29,8 @@ import org.springframework.test.annotati
 import org.springframework.test.context.ContextConfiguration;
 import 
org.springframework.test.context.junit4.AbstractJUnit4SpringContextTests;
 
+import static org.junit.Assert.assertTrue;
+
 @ContextConfiguration
 public class SimpleLanguageWithSprinPropertyPlaceholderRouteTest extends 
AbstractJUnit4SpringContextTests {
     
@@ -73,4 +73,4 @@ public class SimpleLanguageWithSprinProp
 
         assertTrue(new File(directory + "test-" + year + month + day + 
".txt").exists());
     }
-}
\ No newline at end of file
+}


Reply via email to