Spelling fixes

This commit is contained in:
Ville Skyttä 2015-07-10 12:14:36 +03:00 committed by Clebert Suconic
parent 87ba02b9e5
commit 78cb156ef9
5 changed files with 5 additions and 5 deletions

View File

@ -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;
}

View File

@ -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)
{
}

View File

@ -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

View File

@ -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);

View File

@ -67,7 +67,7 @@ public abstract class JMSTestCase extends Assert
}
/**
* Should be overriden
* Should be overridden
* @return
*/
protected Properties getProviderProperties() throws IOException