Repository: camel Updated Branches: refs/heads/master 6948a0143 -> c75d321f2
Fix typo in reference to camel-quartz2.jar Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/c75d321f Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/c75d321f Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/c75d321f Branch: refs/heads/master Commit: c75d321f208d525e65cf6334e731f4814cd19309 Parents: 6948a01 Author: Markus Hauck <markus1...@gmail.com> Authored: Wed Aug 3 11:25:36 2016 +0200 Committer: Andrea Cosentino <anco...@gmail.com> Committed: Wed Aug 3 11:35:35 2016 +0200 ---------------------------------------------------------------------- .../src/main/java/org/apache/camel/impl/ScheduledPollEndpoint.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/c75d321f/camel-core/src/main/java/org/apache/camel/impl/ScheduledPollEndpoint.java ---------------------------------------------------------------------- diff --git a/camel-core/src/main/java/org/apache/camel/impl/ScheduledPollEndpoint.java b/camel-core/src/main/java/org/apache/camel/impl/ScheduledPollEndpoint.java index 6f0b052..a27eb1f 100644 --- a/camel-core/src/main/java/org/apache/camel/impl/ScheduledPollEndpoint.java +++ b/camel-core/src/main/java/org/apache/camel/impl/ScheduledPollEndpoint.java @@ -144,7 +144,7 @@ public abstract class ScheduledPollEndpoint extends DefaultEndpoint { Class<? extends ScheduledPollConsumerScheduler> clazz = getCamelContext().getClassResolver().resolveMandatoryClass(QUARTZ_2_SCHEDULER, ScheduledPollConsumerScheduler.class); setScheduler(getCamelContext().getInjector().newInstance(clazz)); } catch (ClassNotFoundException e) { - throw new IllegalArgumentException("Cannot load " + QUARTZ_2_SCHEDULER + " from classpath. Make sure camel-quarz2.jar is on the classpath.", e); + throw new IllegalArgumentException("Cannot load " + QUARTZ_2_SCHEDULER + " from classpath. Make sure camel-quartz2.jar is on the classpath.", e); } } else { // must refer to a custom scheduler by the given name