Return-Path: Delivered-To: apmail-camel-commits-archive@www.apache.org Received: (qmail 95058 invoked from network); 13 Apr 2011 02:37:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 13 Apr 2011 02:37:09 -0000 Received: (qmail 26460 invoked by uid 500); 13 Apr 2011 02:37:09 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 26403 invoked by uid 500); 13 Apr 2011 02:37:09 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 26396 invoked by uid 99); 13 Apr 2011 02:37:09 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 13 Apr 2011 02:37:09 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 13 Apr 2011 02:37:06 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 3F6EC2388901; Wed, 13 Apr 2011 02:36:45 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1091629 - in /camel/trunk/components: camel-cometd/src/test/java/org/apache/camel/component/cometd/ camel-ftp/src/main/java/org/apache/camel/component/file/remote/ camel-jetty/src/test/java/org/apache/camel/component/jetty/ Date: Wed, 13 Apr 2011 02:36:45 -0000 To: commits@camel.apache.org From: ningjiang@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110413023645.3F6EC2388901@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ningjiang Date: Wed Apr 13 02:36:44 2011 New Revision: 1091629 URL: http://svn.apache.org/viewvc?rev=1091629&view=rev Log: Fixed the CS errors Modified: camel/trunk/components/camel-cometd/src/test/java/org/apache/camel/component/cometd/CometdProducerConsumerInteractiveMain.java camel/trunk/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConfiguration.java camel/trunk/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/HttpStreamCacheFileIssueTest.java camel/trunk/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/HttpStreamCacheFileStopIssueTest.java Modified: camel/trunk/components/camel-cometd/src/test/java/org/apache/camel/component/cometd/CometdProducerConsumerInteractiveMain.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-cometd/src/test/java/org/apache/camel/component/cometd/CometdProducerConsumerInteractiveMain.java?rev=1091629&r1=1091628&r2=1091629&view=diff ============================================================================== --- camel/trunk/components/camel-cometd/src/test/java/org/apache/camel/component/cometd/CometdProducerConsumerInteractiveMain.java (original) +++ camel/trunk/components/camel-cometd/src/test/java/org/apache/camel/component/cometd/CometdProducerConsumerInteractiveMain.java Wed Apr 13 02:36:44 2011 @@ -12,8 +12,7 @@ * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and - * limitations under the License. hello - * + * limitations under the License. */ package org.apache.camel.component.cometd; Modified: camel/trunk/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConfiguration.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConfiguration.java?rev=1091629&r1=1091628&r2=1091629&view=diff ============================================================================== --- camel/trunk/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConfiguration.java (original) +++ camel/trunk/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConfiguration.java Wed Apr 13 02:36:44 2011 @@ -28,7 +28,7 @@ public class SftpConfiguration extends R private String privateKeyFile; private String privateKeyFilePassphrase; private String strictHostKeyChecking = "no"; - private int serverAliveInterval = 0; + private int serverAliveInterval; private int serverAliveCountMax = 1; public SftpConfiguration() { @@ -76,20 +76,20 @@ public class SftpConfiguration extends R this.strictHostKeyChecking = strictHostKeyChecking; } - public void setServerAliveInterval(int serverAliveInterval) { - this.serverAliveInterval = serverAliveInterval; - } - - public int getServerAliveInterval() { - return serverAliveInterval; - } - - public void setServerAliveCountMax(int serverAliveCountMax) { - this.serverAliveCountMax = serverAliveCountMax; - } - - public int getServerAliveCountMax() { - return serverAliveCountMax; - } + public void setServerAliveInterval(int serverAliveInterval) { + this.serverAliveInterval = serverAliveInterval; + } + + public int getServerAliveInterval() { + return serverAliveInterval; + } + + public void setServerAliveCountMax(int serverAliveCountMax) { + this.serverAliveCountMax = serverAliveCountMax; + } + + public int getServerAliveCountMax() { + return serverAliveCountMax; + } } Modified: camel/trunk/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/HttpStreamCacheFileIssueTest.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/HttpStreamCacheFileIssueTest.java?rev=1091629&r1=1091628&r2=1091629&view=diff ============================================================================== --- camel/trunk/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/HttpStreamCacheFileIssueTest.java (original) +++ camel/trunk/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/HttpStreamCacheFileIssueTest.java Wed Apr 13 02:36:44 2011 @@ -52,7 +52,7 @@ public class HttpStreamCacheFileIssueTes String[] files = file.list(); assertEquals("There should be no files", 0, files.length); - assertMockEndpointsSatisfied(); + assertMockEndpointsSatisfied(); } @Override Modified: camel/trunk/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/HttpStreamCacheFileStopIssueTest.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/HttpStreamCacheFileStopIssueTest.java?rev=1091629&r1=1091628&r2=1091629&view=diff ============================================================================== --- camel/trunk/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/HttpStreamCacheFileStopIssueTest.java (original) +++ camel/trunk/components/camel-jetty/src/test/java/org/apache/camel/component/jetty/HttpStreamCacheFileStopIssueTest.java Wed Apr 13 02:36:44 2011 @@ -52,7 +52,7 @@ public class HttpStreamCacheFileStopIssu String[] files = file.list(); assertEquals("There should be no files", 0, files.length); - assertMockEndpointsSatisfied(); + assertMockEndpointsSatisfied(); } @Override