Skip to content

Commit

Permalink
Removing some TABs from the servicemix-utils codebase
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/servicemix/utils/trunk@1085730 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
gertv committed Mar 26, 2011
1 parent 8167df2 commit 0237782
Show file tree
Hide file tree
Showing 18 changed files with 358 additions and 358 deletions.
Expand Up @@ -75,11 +75,11 @@ public String getOutputName(MessageExchange exchange, NormalizedMessage message)
return asString(fileName.evaluate(exchange, message)); return asString(fileName.evaluate(exchange, message));
} }


public String getTempOutputName(MessageExchange exchange, public String getTempOutputName(MessageExchange exchange,
NormalizedMessage message) throws MessagingException { NormalizedMessage message) throws MessagingException {
Object retVal = tempFileName.evaluate(exchange, message); Object retVal = tempFileName.evaluate(exchange, message);
return retVal == null ? null : asString(retVal); return retVal == null ? null : asString(retVal);
} }


public void writeMessage(MessageExchange exchange, NormalizedMessage message, public void writeMessage(MessageExchange exchange, NormalizedMessage message,
OutputStream out, String path) throws IOException, JBIException { OutputStream out, String path) throws IOException, JBIException {
Expand Down
Expand Up @@ -27,7 +27,7 @@
*/ */
public class StreamDataSource extends org.apache.servicemix.util.jaf.StreamDataSource { public class StreamDataSource extends org.apache.servicemix.util.jaf.StreamDataSource {


public StreamDataSource(InputStream in) { public StreamDataSource(InputStream in) {
super(in); super(in);
} }


Expand Down
Expand Up @@ -165,14 +165,14 @@ public Object run() {


ClassLoader classLoader = findClassLoader(); ClassLoader classLoader = findClassLoader();


try { try {
// If we are deployed into an OSGi environment, leverage it // If we are deployed into an OSGi environment, leverage it
Class spiClass = org.apache.servicemix.specs.locator.OsgiLocator.locate(iFactoryId); Class spiClass = org.apache.servicemix.specs.locator.OsgiLocator.locate(iFactoryId);
if (spiClass != null) { if (spiClass != null) {
return spiClass.newInstance(); return spiClass.newInstance();
} }
} catch (Throwable e) { } catch (Throwable e) {
} }


// Use the system property first // Use the system property first
try { try {
Expand Down
Expand Up @@ -46,4 +46,4 @@ public String getValue() {
public void setValue(String value) { public void setValue(String value) {
this.value = value; this.value = value;
} }
} }
2 changes: 1 addition & 1 deletion src/main/java/org/apache/servicemix/jdbc/Statements.java
Expand Up @@ -210,4 +210,4 @@ public void setCountStatement(String getCountStatement) {
this.countStatement = getCountStatement; this.countStatement = getCountStatement;
} }


} }
Expand Up @@ -38,4 +38,4 @@
*/ */
public class BlobJDBCAdapter extends DefaultJDBCAdapter { public class BlobJDBCAdapter extends DefaultJDBCAdapter {


} }
Expand Up @@ -46,4 +46,4 @@ protected void setBinaryData(PreparedStatement s, int index, byte[] data) throws
s.setBytes(index, data); s.setBytes(index, data);
} }


} }
Expand Up @@ -29,4 +29,4 @@ public void setStatements(Statements statements) {
super.setStatements(statements); super.setStatements(statements);
} }


} }
Expand Up @@ -37,4 +37,4 @@ public void setStatements(Statements statements) {
super.setStatements(statements); super.setStatements(statements);
} }


} }
Expand Up @@ -67,4 +67,4 @@ protected void setBinaryData(PreparedStatement s, int index, byte[] data) throws
s.setBinaryStream(index, new ByteArrayInputStream(data), data.length); s.setBinaryStream(index, new ByteArrayInputStream(data), data.length);
} }


} }
Expand Up @@ -167,4 +167,4 @@ private void evict() {
} }
} }
} }
} }

0 comments on commit 0237782

Please sign in to comment.