You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by js...@apache.org on 2007/04/30 18:16:42 UTC

svn commit: r533786 - /activemq/camel/trunk/camel-file/src/main/java/org/apache/camel/component/file/FileConsumer.java

Author: jstrachan
Date: Mon Apr 30 09:16:41 2007
New Revision: 533786

URL: http://svn.apache.org/viewvc?view=rev&rev=533786
Log:
fixed compile error

Modified:
    activemq/camel/trunk/camel-file/src/main/java/org/apache/camel/component/file/FileConsumer.java

Modified: activemq/camel/trunk/camel-file/src/main/java/org/apache/camel/component/file/FileConsumer.java
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/camel-file/src/main/java/org/apache/camel/component/file/FileConsumer.java?view=diff&rev=533786&r1=533785&r2=533786
==============================================================================
--- activemq/camel/trunk/camel-file/src/main/java/org/apache/camel/component/file/FileConsumer.java (original)
+++ activemq/camel/trunk/camel-file/src/main/java/org/apache/camel/component/file/FileConsumer.java Mon Apr 30 09:16:41 2007
@@ -135,8 +135,8 @@
     /**
      * @param attemptFileLock the attemptFileLock to set
      */
-    public void setAttemptFileLock(boolean checkAppending){
-        this.attemptFileLock=checkAppending;
+    public void setAttemptFileLock(boolean attemptFileLock){
+        this.attemptFileLock=attemptFileLock;
     }
 
     /**