Repository: camel
Updated Branches:
  refs/heads/master e6347abe8 -> 77d226180


Polish.

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

Branch: refs/heads/master
Commit: 77d226180a088fb4242a614017e8413e9febe552
Parents: e6347ab
Author: Babak Vahdat <bvah...@apache.org>
Authored: Fri Nov 7 11:30:26 2014 +0100
Committer: Babak Vahdat <bvah...@apache.org>
Committed: Fri Nov 7 11:30:26 2014 +0100

----------------------------------------------------------------------
 .../org/apache/camel/component/quartz2/QuartzEndpoint.java     | 6 +++---
 .../pollconsumer/quartz2/QuartzScheduledPollConsumerJob.java   | 3 ---
 2 files changed, 3 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/77d22618/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 d2afb08..ff70323 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
@@ -289,8 +289,8 @@ public class QuartzEndpoint extends DefaultEndpoint {
                         .withIdentity(triggerKey)
                         .startAt(startTime)
                         .withSchedule(cronSchedule(cron)
-                                .withMisfireHandlingInstructionFireAndProceed()
-                                .inTimeZone(TimeZone.getTimeZone(timeZone)))
+                        .withMisfireHandlingInstructionFireAndProceed()
+                        .inTimeZone(TimeZone.getTimeZone(timeZone)))
                         .build();
                 
jobDetail.getJobDataMap().put(QuartzConstants.QUARTZ_TRIGGER_CRON_TIMEZONE, 
timeZone);
             } else {
@@ -298,7 +298,7 @@ public class QuartzEndpoint extends DefaultEndpoint {
                         .withIdentity(triggerKey)
                         .startAt(startTime)
                         .withSchedule(cronSchedule(cron)
-                                
.withMisfireHandlingInstructionFireAndProceed())
+                        .withMisfireHandlingInstructionFireAndProceed())
                         .build();
             }
 

http://git-wip-us.apache.org/repos/asf/camel/blob/77d22618/components/camel-quartz2/src/main/java/org/apache/camel/pollconsumer/quartz2/QuartzScheduledPollConsumerJob.java
----------------------------------------------------------------------
diff --git 
a/components/camel-quartz2/src/main/java/org/apache/camel/pollconsumer/quartz2/QuartzScheduledPollConsumerJob.java
 
b/components/camel-quartz2/src/main/java/org/apache/camel/pollconsumer/quartz2/QuartzScheduledPollConsumerJob.java
index afaaa7e..7e06f7f 100644
--- 
a/components/camel-quartz2/src/main/java/org/apache/camel/pollconsumer/quartz2/QuartzScheduledPollConsumerJob.java
+++ 
b/components/camel-quartz2/src/main/java/org/apache/camel/pollconsumer/quartz2/QuartzScheduledPollConsumerJob.java
@@ -29,9 +29,6 @@ public class QuartzScheduledPollConsumerJob extends CamelJob {
 
     private static final Logger LOG = 
LoggerFactory.getLogger(QuartzScheduledPollConsumerJob.class);
 
-    public QuartzScheduledPollConsumerJob() {
-    }
-
     @Override
     public void execute(JobExecutionContext context) throws 
JobExecutionException {
         LOG.trace("Execute job: {}", context);

Reply via email to