[Libreoffice-commits] core.git: bean/com

Andrea Gelmini (via logerrit) logerrit at kemper.freedesktop.org
Tue Apr 9 05:27:57 UTC 2019


 bean/com/sun/star/comp/beans/LocalOfficeConnection.java |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 350d159754110a600b94eb27e294b035c73a7ced
Author:     Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Mon Apr 8 09:52:29 2019 +0000
Commit:     Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Tue Apr 9 07:27:35 2019 +0200

    Fix typo
    
    Change-Id: Ia52e717551d50e57d59feba5709d6bf25e1dc1a2
    Reviewed-on: https://gerrit.libreoffice.org/70441
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>

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[,<params>];urp;StarOffice.NamingService
      * params := <path>[,<pipe>]
@@ -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( "%", "_" );


More information about the Libreoffice-commits mailing list