summaryrefslogtreecommitdiff
path: root/qpid/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
commit6f54aa2713204fb1f2696e627e5d4a170e9aca48 (patch)
treee3629d2e122e51e3321291660ffaf59f385ec109 /qpid/java
parenta7eceb8172048b83f2ef9934f250918fdb89f9a4 (diff)
downloadqpid-python-6f54aa2713204fb1f2696e627e5d4a170e9aca48.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@1463148 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java')
-rw-r--r--qpid/java/broker/src/main/java/org/apache/qpid/server/model/adapter/PortFactory.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/qpid/java/broker/src/main/java/org/apache/qpid/server/model/adapter/PortFactory.java b/qpid/java/broker/src/main/java/org/apache/qpid/server/model/adapter/PortFactory.java
index d5455bdb25..ffbd24997a 100644
--- a/qpid/java/broker/src/main/java/org/apache/qpid/server/model/adapter/PortFactory.java
+++ b/qpid/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.");
}
}