Author: gnodet
Date: Tue Mar 27 00:16:43 2007
New Revision: 522801
URL: http://svn.apache.org/viewvc?view=rev&rev=522801
Log:
SM-220: fix typos, thx to Jamie Goodyear
Modified:
incubator/servicemix/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/container/JBIContainer.java
incubator/servicemix/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/messaging/ExchangePacket.java
incubator/servicemix/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/messaging/MessageExchangeImpl.java
Modified:
incubator/servicemix/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/container/JBIContainer.java
URL:
http://svn.apache.org/viewvc/incubator/servicemix/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/container/JBIContainer.java?view=diff&rev=522801&r1=522800&r2=522801
==============================================================================
---
incubator/servicemix/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/container/JBIContainer.java
(original)
+++
incubator/servicemix/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/container/JBIContainer.java
Tue Mar 27 00:16:43 2007
@@ -522,7 +522,7 @@
/**
- * light weight initialization - default values for mbeanSErver,
TransactionManager etc are null
+ * light weight initialization - default values for mbeanServer,
TransactionManager etc are null
*
* @throws JBIException
*/
@@ -750,7 +750,7 @@
transactionManager = (TransactionManager)
namingContext.lookup("javax.transaction.TransactionManager");
}
catch (NamingException e1) {
- log.debug("No transaction manager found from naming
context: " + e.getMessage());
+ log.debug("No transaction manager found from naming
context: " + e1.getMessage());
}
}
}
Modified:
incubator/servicemix/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/messaging/ExchangePacket.java
URL:
http://svn.apache.org/viewvc/incubator/servicemix/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/messaging/ExchangePacket.java?view=diff&rev=522801&r1=522800&r2=522801
==============================================================================
---
incubator/servicemix/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/messaging/ExchangePacket.java
(original)
+++
incubator/servicemix/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/messaging/ExchangePacket.java
Tue Mar 27 00:16:43 2007
@@ -244,7 +244,7 @@
/**
* @param name
- * @return the proerty from the exchange
+ * @return the property from the exchange
*/
public Object getProperty(String name) {
if (properties != null) {
Modified:
incubator/servicemix/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/messaging/MessageExchangeImpl.java
URL:
http://svn.apache.org/viewvc/incubator/servicemix/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/messaging/MessageExchangeImpl.java?view=diff&rev=522801&r1=522800&r2=522801
==============================================================================
---
incubator/servicemix/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/messaging/MessageExchangeImpl.java
(original)
+++
incubator/servicemix/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/messaging/MessageExchangeImpl.java
Tue Mar 27 00:16:43 2007
@@ -177,7 +177,7 @@
}
/**
- * @return URI of pattenr exchange
+ * @return URI of pattern exchange
*/
public URI getPattern() {
return packet.getPattern();
@@ -340,7 +340,7 @@
/**
* @param name
- * @return the proerty from the exchange
+ * @return the property from the exchange
*/
public Object getProperty(String name) {
if (JTA_TRANSACTION_PROPERTY_NAME.equals(name)) {