From commits-return-65505-archive-asf-public=cust-asf.ponee.io@camel.apache.org Thu Sep 27 09:18:15 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 7066E180652 for ; Thu, 27 Sep 2018 09:18:15 +0200 (CEST) Received: (qmail 97494 invoked by uid 500); 27 Sep 2018 07:18:14 -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 97485 invoked by uid 99); 27 Sep 2018 07:18:14 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Sep 2018 07:18:14 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id CB84C82E72; Thu, 27 Sep 2018 07:18:13 +0000 (UTC) Date: Thu, 27 Sep 2018 07:18:13 +0000 To: "commits@camel.apache.org" Subject: [camel] branch master updated: fix exception message typo MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <153803269356.1319.13984746083847665179@gitbox.apache.org> From: onders@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: camel X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 4af1c5d2e3b062d3ff9bf35e517d79e92fe3ab50 X-Git-Newrev: 287c7bd4665f8458adea24bd36767a6790fa3e8f X-Git-Rev: 287c7bd4665f8458adea24bd36767a6790fa3e8f X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. onders pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git The following commit(s) were added to refs/heads/master by this push: new 287c7bd fix exception message typo 287c7bd is described below commit 287c7bd4665f8458adea24bd36767a6790fa3e8f Author: önder sezgin AuthorDate: Thu Sep 27 10:18:09 2018 +0300 fix exception message typo --- .../main/java/org/apache/camel/component/file/remote/FtpOperations.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/FtpOperations.java b/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/FtpOperations.java index b3ca32a..196dfc2 100644 --- a/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/FtpOperations.java +++ b/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/FtpOperations.java @@ -760,7 +760,7 @@ public class FtpOperations implements RemoteFileOperations { throw new GenericFileOperationFailedException(client.getReplyCode(), client.getReplyString(), "Cannot delete file: " + to, e); } } else { - throw new GenericFileOperationFailedException("Cannot moved existing file from: " + name + " to: " + to + " as there already exists a file: " + to); + throw new GenericFileOperationFailedException("Cannot move existing file from: " + name + " to: " + to + " as there already exists a file: " + to); } }