This is an automated email from the ASF dual-hosted git repository. davsclaus 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 a887800 Typo a887800 is described below commit a887800f8ca2b170bc104fdf04906fe262d5cbf8 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Thu May 2 10:54:45 2019 +0200 Typo --- .../java/org/apache/camel/component/file/GenericFileConsumer.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/camel-file/src/main/java/org/apache/camel/component/file/GenericFileConsumer.java b/components/camel-file/src/main/java/org/apache/camel/component/file/GenericFileConsumer.java index 93e64b3..e3e47ef 100644 --- a/components/camel-file/src/main/java/org/apache/camel/component/file/GenericFileConsumer.java +++ b/components/camel-file/src/main/java/org/apache/camel/component/file/GenericFileConsumer.java @@ -716,18 +716,18 @@ public abstract class GenericFileConsumer<T> extends ScheduledBatchPollingConsum @Override public void onInit() throws Exception { - // noop as we do a manual on-demand poll with GenericFilePolllingConsumer + // noop as we do a manual on-demand poll with GenericFilePollingConsumer } @Override public long beforePoll(long timeout) throws Exception { - // noop as we do a manual on-demand poll with GenericFilePolllingConsumer + // noop as we do a manual on-demand poll with GenericFilePollingConsumer return timeout; } @Override public void afterPoll() throws Exception { - // noop as we do a manual on-demand poll with GenericFilePolllingConsumer + // noop as we do a manual on-demand poll with GenericFilePollingConsumer } }