summaryrefslogtreecommitdiff
path: root/bean
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-04-08 09:52:29 +0000
committerJulien Nabet <serval2412@yahoo.fr>2019-04-09 07:27:35 +0200
commit350d159754110a600b94eb27e294b035c73a7ced (patch)
tree3ec6c7576b1ba885eb698ce071634261939dc8d6 /bean
parentb3d415fb3e740f873d64c2138db5d7186e9561fe (diff)
Fix typo
Change-Id: Ia52e717551d50e57d59feba5709d6bf25e1dc1a2 Reviewed-on: https://gerrit.libreoffice.org/70441 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'bean')
-rw-r--r--bean/com/sun/star/comp/beans/LocalOfficeConnection.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bean/com/sun/star/comp/beans/LocalOfficeConnection.java b/bean/com/sun/star/comp/beans/LocalOfficeConnection.java
index a77c30d3e533..f76bec0564ad 100644
--- a/bean/com/sun/star/comp/beans/LocalOfficeConnection.java
+++ b/bean/com/sun/star/comp/beans/LocalOfficeConnection.java
@@ -192,7 +192,7 @@ public class LocalOfficeConnection
/**
* Sets an AWT container factory.
*
- * @param containerFactory This is a application provided AWT container
+ * @param containerFactory This is an application provided AWT container
* factory.
*/
@Deprecated
@@ -448,7 +448,7 @@ public class LocalOfficeConnection
/**
* Parses a connection URL.
- * This method accepts a UNO URL with following format:<br>
+ * This method accepts an UNO URL with following format:<br>
* <pre>
* url := uno:localoffice[,&lt;params&gt;];urp;StarOffice.NamingService
* params := &lt;path&gt;[,&lt;pipe&gt;]
@@ -632,7 +632,7 @@ public class LocalOfficeConnection
*/
private static String getPipeName() throws UnsupportedEncodingException
{
- // turn user name into a URL and file system safe name (% chars will not work)
+ // turn user name into an 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( "%", "_" );