diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2014-08-01 16:56:25 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2014-08-01 23:40:12 +0900 |
commit | 9bac4d413e960e354a3cf81e3de9b1cb483d02ad (patch) | |
tree | b6555611ec9102dd5e2cf5917b0fb2c00ea5ed9f /bean/com | |
parent | ca1897ede3faaf71d263ab2efaf975c74c46f8b5 (diff) |
typo: more then -> more than
Change-Id: I2e477d66f25bde7256938ccb1f95ab26add24922
Diffstat (limited to 'bean/com')
-rw-r--r-- | bean/com/sun/star/beans/LocalOfficeConnection.java | 4 | ||||
-rw-r--r-- | bean/com/sun/star/comp/beans/LocalOfficeConnection.java | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/bean/com/sun/star/beans/LocalOfficeConnection.java b/bean/com/sun/star/beans/LocalOfficeConnection.java index 368a3b1d57ba..8dbf00cbad55 100644 --- a/bean/com/sun/star/beans/LocalOfficeConnection.java +++ b/bean/com/sun/star/beans/LocalOfficeConnection.java @@ -465,12 +465,12 @@ public class LocalOfficeConnection if (path == null) path = buffer.toString(); else - state = -3; // error: more then one 'path' + state = -3; // error: more than one 'path' } else if (("pipe").equals(name)) { if (pipe == null) pipe = buffer.toString(); else - state = -4; // error: more then one 'pipe' + state = -4; // error: more than one 'pipe' } else state = -2; // error: unknown parameter buffer.delete(0, buffer.length()); diff --git a/bean/com/sun/star/comp/beans/LocalOfficeConnection.java b/bean/com/sun/star/comp/beans/LocalOfficeConnection.java index 74a60e4d8e11..49fb32b52e20 100644 --- a/bean/com/sun/star/comp/beans/LocalOfficeConnection.java +++ b/bean/com/sun/star/comp/beans/LocalOfficeConnection.java @@ -572,12 +572,12 @@ public class LocalOfficeConnection if (path == null) path = buffer.toString(); else - state = -3; // error: more then one 'path' + state = -3; // error: more than one 'path' } else if (name.equals("pipe")) { if (pipe == null) pipe = buffer.toString(); else - state = -4; // error: more then one 'pipe' + state = -4; // error: more than one 'pipe' } else state = -2; // error: unknown parameter buffer.delete(0, buffer.length()); |