javaunohelper/com/sun/star/lib/uno/helper/UnoUrl.java |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1e04460c9a6e7b2bec3a60fe6ffcf0509a870087
Author: rbuj <robert....@gmail.com>
Date:   Sat Sep 13 10:55:02 2014 +0200

    javaunohelper: use a character literal
    
    Change-Id: Ib0a69ac4714cd694ccd6a9bea87e32c1aadb0428
    Reviewed-on: https://gerrit.libreoffice.org/11433
    Reviewed-by: David Tardon <dtar...@redhat.com>
    Tested-by: David Tardon <dtar...@redhat.com>

diff --git a/javaunohelper/com/sun/star/lib/uno/helper/UnoUrl.java 
b/javaunohelper/com/sun/star/lib/uno/helper/UnoUrl.java
index 18700de..5766792 100644
--- a/javaunohelper/com/sun/star/lib/uno/helper/UnoUrl.java
+++ b/javaunohelper/com/sun/star/lib/uno/helper/UnoUrl.java
@@ -297,7 +297,7 @@ public class UnoUrl {
         throws com.sun.star.lang.IllegalArgumentException {
         String partName;
         String theParamPart;
-        int index = thePart.indexOf(",");
+        int index = thePart.indexOf(',');
         if (index != -1) {
             partName = thePart.substring(0, index).trim();
             theParamPart = thePart.substring(index + 1).trim();
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to