You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2011/01/21 11:04:48 UTC

svn commit: r1061715 - /camel/trunk/components/camel-bindy/src/main/java/org/apache/camel/dataformat/bindy/annotation/FixedLengthRecord.java

Author: davsclaus
Date: Fri Jan 21 10:04:47 2011
New Revision: 1061715

URL: http://svn.apache.org/viewvc?rev=1061715&view=rev
Log:
CAMEL-3562: unmarshalling using fixed length should not trim input record. Added better test for that. Removed not needed option to control the trimming as it should never trim.

Modified:
    camel/trunk/components/camel-bindy/src/main/java/org/apache/camel/dataformat/bindy/annotation/FixedLengthRecord.java

Modified: camel/trunk/components/camel-bindy/src/main/java/org/apache/camel/dataformat/bindy/annotation/FixedLengthRecord.java
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-bindy/src/main/java/org/apache/camel/dataformat/bindy/annotation/FixedLengthRecord.java?rev=1061715&r1=1061714&r2=1061715&view=diff
==============================================================================
--- camel/trunk/components/camel-bindy/src/main/java/org/apache/camel/dataformat/bindy/annotation/FixedLengthRecord.java (original)
+++ camel/trunk/components/camel-bindy/src/main/java/org/apache/camel/dataformat/bindy/annotation/FixedLengthRecord.java Fri Jan 21 10:04:47 2011
@@ -59,7 +59,5 @@ public @interface FixedLengthRecord {
     boolean hasHeader() default false;
     
     boolean hasFooter() default false;
-    
-    boolean trim() default false;
 
 }