From 1156f981ac4557737dd915e89e11abaa61e29f14 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 9 May 2019 16:34:33 +0100 Subject: an is used before a vowel sound MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit not before vowels with a consonant sound so its a url not an url Change-Id: Ic27ff3bee67469284d460c31ced6f63cb3633db2 Reviewed-on: https://gerrit.libreoffice.org/72062 Reviewed-by: Jens Carl Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- bean/com/sun/star/comp/beans/LocalOfficeConnection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bean') diff --git a/bean/com/sun/star/comp/beans/LocalOfficeConnection.java b/bean/com/sun/star/comp/beans/LocalOfficeConnection.java index f76bec0564ad..d4f12e70268e 100644 --- a/bean/com/sun/star/comp/beans/LocalOfficeConnection.java +++ b/bean/com/sun/star/comp/beans/LocalOfficeConnection.java @@ -632,7 +632,7 @@ public class LocalOfficeConnection */ private static String getPipeName() throws UnsupportedEncodingException { - // turn user name into an URL and file system safe name (% chars will not work) + // turn user name into a URL and file system safe name (% chars will not work) String aPipeName = System.getProperty("user.name") + OFFICE_ID_SUFFIX; aPipeName = aPipeName.replace( "_", "%B7" ); return java.net.URLEncoder.encode( aPipeName, "UTF-8" ).replace( "+", "%20" ).replace( "%", "_" ); -- cgit