Author: djencks
Date: Tue Feb 9 18:54:16 2010
New Revision: 908154
URL: http://svn.apache.org/viewvc?rev=908154&view=rev
Log:
minor formatting and javadoc fixes
Modified:
activemq/trunk/activemq-core/src/main/java/org/apache/activemq/util/FactoryFinder.java
activemq/trunk/activemq-core/src/test/java/org/apache/activemq/JmsTransactionTestSupport.java
Modified:
activemq/trunk/activemq-core/src/main/java/org/apache/activemq/util/FactoryFinder.java
URL:
http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/util/FactoryFinder.java?rev=908154&r1=908153&r2=908154&view=diff
==============================================================================
---
activemq/trunk/activemq-core/src/main/java/org/apache/activemq/util/FactoryFinder.java
(original)
+++
activemq/trunk/activemq-core/src/main/java/org/apache/activemq/util/FactoryFinder.java
Tue Feb 9 18:54:16 2010
@@ -28,13 +28,13 @@
public class FactoryFinder {
/**
- * The strategey that the FactoryFinder uses to find load and instanciate
Objects
- * can be chagned out by calling the
+ * The strategy that the FactoryFinder uses to find load and instantiate
Objects
+ * can be changed out by calling the
* {...@link
org.apache.activemq.util.FactoryFinder#setObjectFactory(org.apache.activemq.util.FactoryFinder.ObjectFactory)}
- * method with a custom implemenation of ObjectFactory.
+ * method with a custom implementation of ObjectFactory.
*
* The default ObjectFactory is typically changed out when running in a
specialized container
- * enviorment where service discovery needs to be done via the container
system. For example,
+ * environment where service discovery needs to be done via the container
system. For example,
* in an OSGi scenario.
*/
public interface ObjectFactory {
Modified:
activemq/trunk/activemq-core/src/test/java/org/apache/activemq/JmsTransactionTestSupport.java
URL:
http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/JmsTransactionTestSupport.java?rev=908154&r1=908153&r2=908154&view=diff
==============================================================================
---
activemq/trunk/activemq-core/src/test/java/org/apache/activemq/JmsTransactionTestSupport.java
(original)
+++
activemq/trunk/activemq-core/src/test/java/org/apache/activemq/JmsTransactionTestSupport.java
Tue Feb 9 18:54:16 2010
@@ -349,7 +349,7 @@
// lets consume any outstanding messages from prev test runs
beginTx();
- while (consumer.receive(1000) != null) {
+ while (consumer.receive(1000) != null) {
}
commitTx();