Author: ningjiang
Date: Fri Sep  4 02:27:27 2009
New Revision: 811204

URL: http://svn.apache.org/viewvc?rev=811204&view=rev
Log:
Fixed the CS error and a typo

Modified:
    
camel/trunk/camel-core/src/main/java/org/apache/camel/component/file/strategy/GenericFileRenameExclusiveReadLockStrategy.java
    
camel/trunk/components/camel-irc/src/main/java/org/apache/camel/component/irc/IrcConfiguration.java

Modified: 
camel/trunk/camel-core/src/main/java/org/apache/camel/component/file/strategy/GenericFileRenameExclusiveReadLockStrategy.java
URL: 
http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/component/file/strategy/GenericFileRenameExclusiveReadLockStrategy.java?rev=811204&r1=811203&r2=811204&view=diff
==============================================================================
--- 
camel/trunk/camel-core/src/main/java/org/apache/camel/component/file/strategy/GenericFileRenameExclusiveReadLockStrategy.java
 (original)
+++ 
camel/trunk/camel-core/src/main/java/org/apache/camel/component/file/strategy/GenericFileRenameExclusiveReadLockStrategy.java
 Fri Sep  4 02:27:27 2009
@@ -25,7 +25,7 @@
 
 /**
  * Acquires exclusive read lock to the given file. Will wait until the lock is 
granted.
- * After granting the read lock it is realeased, we just want to make sure 
that when we start
+ * After granting the read lock it is released, we just want to make sure that 
when we start
  * consuming the file its not currently in progress of being written by third 
party.
  */
 public class GenericFileRenameExclusiveReadLockStrategy<T> implements 
GenericFileExclusiveReadLockStrategy<T> {

Modified: 
camel/trunk/components/camel-irc/src/main/java/org/apache/camel/component/irc/IrcConfiguration.java
URL: 
http://svn.apache.org/viewvc/camel/trunk/components/camel-irc/src/main/java/org/apache/camel/component/irc/IrcConfiguration.java?rev=811204&r1=811203&r2=811204&view=diff
==============================================================================
--- 
camel/trunk/components/camel-irc/src/main/java/org/apache/camel/component/irc/IrcConfiguration.java
 (original)
+++ 
camel/trunk/components/camel-irc/src/main/java/org/apache/camel/component/irc/IrcConfiguration.java
 Fri Sep  4 02:27:27 2009
@@ -45,7 +45,7 @@
     private boolean onKick = true;
     private boolean onMode = true;
     private boolean onPart = true;
-    private boolean onReply = false;
+    private boolean onReply;
     private boolean onTopic = true;
     private boolean onPrivmsg = true;
     private int[] ports = {6667, 6668, 6669};


Reply via email to