You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2015/07/13 15:39:15 UTC

[2/2] activemq-artemis git commit: Spelling fixes

Spelling fixes


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/78cb156e
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/78cb156e
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/78cb156e

Branch: refs/heads/master
Commit: 78cb156ef90ba87a834056b0a66adc2feba9e8ac
Parents: 87ba02b
Author: Ville Skyttä <vi...@iki.fi>
Authored: Fri Jul 10 12:14:36 2015 +0300
Committer: Clebert Suconic <cl...@apache.org>
Committed: Mon Jul 13 09:38:00 2015 -0400

----------------------------------------------------------------------
 .../activemq/artemis/core/protocol/stomp/StompConnection.java      | 2 +-
 .../apache/activemq/artemis/core/protocol/stomp/StompDecoder.java  | 2 +-
 examples/jms/common/config/logging.properties                      | 2 +-
 .../artemis/tests/integration/client/MessageExpirationTest.java    | 2 +-
 .../test/java/org/objectweb/jtests/jms/framework/JMSTestCase.java  | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/78cb156e/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompConnection.java
----------------------------------------------------------------------
diff --git a/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompConnection.java b/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompConnection.java
index b8e26ee..f172b39 100644
--- a/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompConnection.java
+++ b/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompConnection.java
@@ -493,7 +493,7 @@ public final class StompConnection implements RemotingConnection
             ActiveMQStompException error = BUNDLE.versionNotSupported(acceptVersion);
             error.addHeader(Stomp.Headers.Error.VERSION, acceptVersion);
             error.addHeader(Stomp.Headers.CONTENT_TYPE, "text/plain");
-            error.setBody("Supported protocol version are " + manager.getSupportedVersionsAsString());
+            error.setBody("Supported protocol versions are " + manager.getSupportedVersionsAsString());
             error.setDisconnect(true);
             throw error;
          }

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/78cb156e/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompDecoder.java
----------------------------------------------------------------------
diff --git a/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompDecoder.java b/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompDecoder.java
index 31f119f..19e7dda 100644
--- a/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompDecoder.java
+++ b/artemis-protocols/artemis-stomp-protocol/src/main/java/org/apache/activemq/artemis/core/protocol/stomp/StompDecoder.java
@@ -711,7 +711,7 @@ public class StompDecoder
       return str.toString();
    }
 
-   //this should be overriden by subclasses.
+   /** This should be overridden by subclasses. */
    public void init(StompDecoder decoder)
    {
    }

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/78cb156e/examples/jms/common/config/logging.properties
----------------------------------------------------------------------
diff --git a/examples/jms/common/config/logging.properties b/examples/jms/common/config/logging.properties
index 3c6f629..4f4a9de 100644
--- a/examples/jms/common/config/logging.properties
+++ b/examples/jms/common/config/logging.properties
@@ -41,7 +41,7 @@ java.util.logging.FileHandler.pattern=logs/activemq.log
 # Default global logging level.
 # This specifies which kinds of events are logged across
 # all loggers.  For any given facility this global level
-# can be overriden by a facility specific level
+# can be overridden by a facility specific level
 # Note that the ConsoleHandler also has a separate level
 # setting to limit messages printed to the console.
 .level= INFO

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/78cb156e/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/client/MessageExpirationTest.java
----------------------------------------------------------------------
diff --git a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/client/MessageExpirationTest.java b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/client/MessageExpirationTest.java
index 18d683f..ce48671 100644
--- a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/client/MessageExpirationTest.java
+++ b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/integration/client/MessageExpirationTest.java
@@ -92,7 +92,7 @@ public class MessageExpirationTest extends ActiveMQTestBase
 
       producer.send(message);
 
-      // second message, this message shouldn't be overriden
+      // second message, this message shouldn't be overridden
       message = session.createMessage(false);
       message.setExpiration(System.currentTimeMillis() + EXPIRATION * 3);
       producer.send(message);

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/78cb156e/tests/joram-tests/src/test/java/org/objectweb/jtests/jms/framework/JMSTestCase.java
----------------------------------------------------------------------
diff --git a/tests/joram-tests/src/test/java/org/objectweb/jtests/jms/framework/JMSTestCase.java b/tests/joram-tests/src/test/java/org/objectweb/jtests/jms/framework/JMSTestCase.java
index 1835bfe..03cba12 100644
--- a/tests/joram-tests/src/test/java/org/objectweb/jtests/jms/framework/JMSTestCase.java
+++ b/tests/joram-tests/src/test/java/org/objectweb/jtests/jms/framework/JMSTestCase.java
@@ -67,7 +67,7 @@ public abstract class JMSTestCase extends Assert
    }
 
    /**
-    * Should be overriden
+    * Should be overridden
     * @return
     */
    protected Properties getProviderProperties() throws IOException