summaryrefslogtreecommitdiff
path: root/jurt
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2017-03-15 14:58:38 +0100
committerBjörn Michaelsen <bjoern.michaelsen@canonical.com>2017-03-16 10:50:26 +0000
commit15e3ce53283f288cb2c4c52acb203c9c281914ac (patch)
tree9df72cca5afd8dcbc70fcfba083b116c99431e84 /jurt
parent665d7a4e659114120009636aeb4049b10009f36e (diff)
Fix typos
Change-Id: I1488e2147fa0cd4a821eb5bfe172a58a4e396ace Reviewed-on: https://gerrit.libreoffice.org/35224 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
Diffstat (limited to 'jurt')
-rw-r--r--jurt/com/sun/star/lib/connections/pipe/pipeConnector.java2
-rw-r--r--jurt/com/sun/star/lib/connections/socket/socketConnector.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/jurt/com/sun/star/lib/connections/pipe/pipeConnector.java b/jurt/com/sun/star/lib/connections/pipe/pipeConnector.java
index fb59aa505a77..192d350071bf 100644
--- a/jurt/com/sun/star/lib/connections/pipe/pipeConnector.java
+++ b/jurt/com/sun/star/lib/connections/pipe/pipeConnector.java
@@ -103,7 +103,7 @@ public final class pipeConnector implements XConnector {
throws NoConnectException, ConnectionSetupException
{
if (bConnected)
- throw new ConnectionSetupException("alread connected");
+ throw new ConnectionSetupException("already connected");
try {
XConnection xConn = new PipeConnection( connectionDescription );
diff --git a/jurt/com/sun/star/lib/connections/socket/socketConnector.java b/jurt/com/sun/star/lib/connections/socket/socketConnector.java
index 3d29e47f4f21..68fdf00c1149 100644
--- a/jurt/com/sun/star/lib/connections/socket/socketConnector.java
+++ b/jurt/com/sun/star/lib/connections/socket/socketConnector.java
@@ -109,7 +109,7 @@ public final class socketConnector implements XConnector {
throws NoConnectException, ConnectionSetupException
{
if (connected)
- throw new ConnectionSetupException("alread connected");
+ throw new ConnectionSetupException("already connected");
ConnectionDescriptor desc;
try {