You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by bv...@apache.org on 2013/10/28 20:40:13 UTC

git commit: CAMEL-6907: Fixed the broken build.

Updated Branches:
  refs/heads/master b5816d332 -> 28d3be75e


CAMEL-6907: Fixed the broken build.

Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/28d3be75
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/28d3be75
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/28d3be75

Branch: refs/heads/master
Commit: 28d3be75e54ebb5af1ab15dae42d9afdf0147052
Parents: b5816d3
Author: Babak Vahdat <bv...@apache.org>
Authored: Mon Oct 28 20:40:05 2013 +0100
Committer: Babak Vahdat <bv...@apache.org>
Committed: Mon Oct 28 20:40:05 2013 +0100

----------------------------------------------------------------------
 .../org/apache/camel/component/quartz2/QuartzEndpoint.java     | 6 ------
 1 file changed, 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/28d3be75/components/camel-quartz2/src/main/java/org/apache/camel/component/quartz2/QuartzEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-quartz2/src/main/java/org/apache/camel/component/quartz2/QuartzEndpoint.java b/components/camel-quartz2/src/main/java/org/apache/camel/component/quartz2/QuartzEndpoint.java
index 0fc6cb5..891ee83 100644
--- a/components/camel-quartz2/src/main/java/org/apache/camel/component/quartz2/QuartzEndpoint.java
+++ b/components/camel-quartz2/src/main/java/org/apache/camel/component/quartz2/QuartzEndpoint.java
@@ -28,7 +28,6 @@ import org.apache.camel.Route;
 import org.apache.camel.impl.DefaultEndpoint;
 import org.apache.camel.processor.loadbalancer.LoadBalancer;
 import org.apache.camel.processor.loadbalancer.RoundRobinLoadBalancer;
-import org.apache.camel.util.EndpointHelper;
 import org.quartz.Job;
 import org.quartz.JobBuilder;
 import org.quartz.JobDataMap;
@@ -303,11 +302,6 @@ public class QuartzEndpoint extends DefaultEndpoint {
         return result;
     }
 
-    private void setProperties(Object bean, Map<String, Object> parameters) throws Exception {
-        EndpointHelper.setReferenceProperties(getCamelContext(), bean, parameters);
-        EndpointHelper.setProperties(getCamelContext(), bean, parameters);
-    }
-
     private JobDetail createJobDetail() throws Exception {
         // Camel endpoint timer will assume one to one for JobDetail and Trigger, so let's use same name as trigger
         String name = triggerKey.getName();