Author: ningjiang
Date: Fri Nov 6 03:30:27 2009
New Revision: 833291
URL: http://svn.apache.org/viewvc?rev=833291&view=rev
Log:
Fixed the CS error of ServiceSupport
Modified:
camel/branches/camel-1.x/camel-core/src/main/java/org/apache/camel/impl/ServiceSupport.java
Modified:
camel/branches/camel-1.x/camel-core/src/main/java/org/apache/camel/impl/ServiceSupport.java
URL:
http://svn.apache.org/viewvc/camel/branches/camel-1.x/camel-core/src/main/java/org/apache/camel/impl/ServiceSupport.java?rev=833291&r1=833290&r2=833291&view=diff
==============================================================================
---
camel/branches/camel-1.x/camel-core/src/main/java/org/apache/camel/impl/ServiceSupport.java
(original)
+++
camel/branches/camel-1.x/camel-core/src/main/java/org/apache/camel/impl/ServiceSupport.java
Fri Nov 6 03:30:27 2009
@@ -55,11 +55,11 @@
ex = e;
} finally {
if (ex != null) {
- try {
- stop(childrenStarted);
- } catch (Exception e) {
- // Ignore exceptions as we want to show the
original exception
- }
+ try {
+ stop(childrenStarted);
+ } catch (Exception e) {
+ // Ignore exceptions as we want to show the
original exception
+ }
throw ex;
} else {
started.set(true);