summaryrefslogtreecommitdiff
path: root/java
diff options
context:
space:
mode:
authorRobert Gemmell <robbie@apache.org>2013-04-01 14:35:22 +0000
committerRobert Gemmell <robbie@apache.org>2013-04-01 14:35:22 +0000
commit564712340591fc3755237d60ac4c598be6c92a9f (patch)
tree6572570836654d90ac40922b997108a8f23e5a0b /java
parent6dd70ca4175538e2fad3f9d4bdd5b00134659771 (diff)
downloadqpid-python-564712340591fc3755237d60ac4c598be6c92a9f.tar.gz
QPID-4657, QPID-4683: really going all out on the spelling fixes :P
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1463148 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
-rw-r--r--java/broker/src/main/java/org/apache/qpid/server/model/adapter/PortFactory.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/java/broker/src/main/java/org/apache/qpid/server/model/adapter/PortFactory.java b/java/broker/src/main/java/org/apache/qpid/server/model/adapter/PortFactory.java
index d5455bdb25..ffbd24997a 100644
--- a/java/broker/src/main/java/org/apache/qpid/server/model/adapter/PortFactory.java
+++ b/java/broker/src/main/java/org/apache/qpid/server/model/adapter/PortFactory.java
@@ -113,7 +113,7 @@ public class PortFactory
if(useClientAuth && !port.getTransports().contains(Transport.SSL))
{
- throw new IllegalConfigurationException("Can't create port which requests SSL client certificates but doesnt use SSL transport.");
+ throw new IllegalConfigurationException("Can't create port which requests SSL client certificates but doesn't use SSL transport.");
}
}
else
@@ -135,7 +135,7 @@ public class PortFactory
Collection<Protocol> portProtocols = existingPort.getProtocols();
if (portProtocols != null && portProtocols.contains(protocol))
{
- throw new IllegalConfigurationException("Port for protocol " + protocol + " already exist. Only one management port per protocol can be created");
+ throw new IllegalConfigurationException("Port for protocol " + protocol + " already exists. Only one management port per protocol can be created.");
}
}
}
@@ -148,7 +148,7 @@ public class PortFactory
{
if(broker.getKeyStores().isEmpty())
{
- throw new IllegalConfigurationException("Cant create port which requires SSL as the broker has no keystore configured.");
+ throw new IllegalConfigurationException("Can't create port which requires SSL as the broker has no keystore configured.");
}
}