Updated Branches: refs/heads/camel-2.10.x ea3823a58 -> 93d0f250f
fixed CS error Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/93d0f250 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/93d0f250 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/93d0f250 Branch: refs/heads/camel-2.10.x Commit: 93d0f250fa9024f488f7c77e2e5ee35b4b3f233c Parents: ea3823a Author: cmueller <cmuel...@apache.org> Authored: Wed Jun 19 22:37:16 2013 +0200 Committer: cmueller <cmuel...@apache.org> Committed: Wed Jun 19 22:37:16 2013 +0200 ---------------------------------------------------------------------- .../processor/DeadLetterChannelAlwaysHandledTest.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/93d0f250/camel-core/src/test/java/org/apache/camel/processor/DeadLetterChannelAlwaysHandledTest.java ---------------------------------------------------------------------- diff --git a/camel-core/src/test/java/org/apache/camel/processor/DeadLetterChannelAlwaysHandledTest.java b/camel-core/src/test/java/org/apache/camel/processor/DeadLetterChannelAlwaysHandledTest.java index 324a391..e4f6de3 100644 --- a/camel-core/src/test/java/org/apache/camel/processor/DeadLetterChannelAlwaysHandledTest.java +++ b/camel-core/src/test/java/org/apache/camel/processor/DeadLetterChannelAlwaysHandledTest.java @@ -26,7 +26,7 @@ import org.apache.camel.spi.ExceptionHandler; public class DeadLetterChannelAlwaysHandledTest extends ContextTestSupport { - private static final AtomicBoolean called = new AtomicBoolean(); + private static final AtomicBoolean CALLED = new AtomicBoolean(); public void testDeadLetterChannelAlwaysHandled() throws Exception { // need to set exception handler manually to work around an issue configuring from uri @@ -42,7 +42,7 @@ public class DeadLetterChannelAlwaysHandledTest extends ContextTestSupport { assertMockEndpointsSatisfied(); - assertFalse("Should not have called", called.get()); + assertFalse("Should not have called", CALLED.get()); } @Override @@ -69,17 +69,17 @@ public class DeadLetterChannelAlwaysHandledTest extends ContextTestSupport { @Override public void handleException(Throwable exception) { - called.set(true); + CALLED.set(true); } @Override public void handleException(String message, Throwable exception) { - called.set(true); + CALLED.set(true); } @Override public void handleException(String message, Exchange exchange, Throwable exception) { - called.set(true); + CALLED.set(true); } } }