Repository: camel
Updated Branches:
refs/heads/camel-2.13.x 217c81ccb -> f424d8243
fixed a CS error
Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/f424d824
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/f424d824
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/f424d824
Branch: refs/heads/camel-2.13.x
Commit: f424d824314afb00bdb92bcb9b597b30b5e3393a
Parents: 217c81c
Author: Christian Mueller <cmueller@apache.org>
Authored: Thu Oct 16 08:59:41 2014 +0200
Committer: Christian Mueller <cmueller@apache.org>
Committed: Thu Oct 16 08:59:41 2014 +0200
----------------------------------------------------------------------
.../java/org/apache/camel/component/timer/TimerEndpoint.java | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/camel/blob/f424d824/camel-core/src/main/java/org/apache/camel/component/timer/TimerEndpoint.java
----------------------------------------------------------------------
diff --git a/camel-core/src/main/java/org/apache/camel/component/timer/TimerEndpoint.java
b/camel-core/src/main/java/org/apache/camel/component/timer/TimerEndpoint.java
index 89c170e..bc39989 100644
--- a/camel-core/src/main/java/org/apache/camel/component/timer/TimerEndpoint.java
+++ b/camel-core/src/main/java/org/apache/camel/component/timer/TimerEndpoint.java
@@ -64,6 +64,10 @@ public class TimerEndpoint extends DefaultEndpoint implements MultipleConsumersS
this.timerName = timerName;
}
+ protected TimerEndpoint(String endpointUri, Component component) {
+ super(endpointUri, component);
+ }
+
@Override
public TimerComponent getComponent() {
return (TimerComponent) super.getComponent();
@@ -192,10 +196,6 @@ public class TimerEndpoint extends DefaultEndpoint implements MultipleConsumersS
return getStatus().name();
}
- protected TimerEndpoint(String endpointUri, Component component) {
- super(endpointUri, component);
- }
-
public Timer getTimer(TimerConsumer consumer) {
if (timer != null) {
// use custom timer
|