diff options
author | rbuj <robert.buj@gmail.com> | 2014-09-13 10:55:02 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2014-09-13 15:26:30 +0000 |
commit | 1e04460c9a6e7b2bec3a60fe6ffcf0509a870087 (patch) | |
tree | 1b02781b9a58699a9a96b9640be1d090e8effd8f /javaunohelper | |
parent | ebeeebbceacd61f47c350cc17918fb7284defbad (diff) |
javaunohelper: use a character literal
Change-Id: Ib0a69ac4714cd694ccd6a9bea87e32c1aadb0428
Reviewed-on: https://gerrit.libreoffice.org/11433
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'javaunohelper')
-rw-r--r-- | javaunohelper/com/sun/star/lib/uno/helper/UnoUrl.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/javaunohelper/com/sun/star/lib/uno/helper/UnoUrl.java b/javaunohelper/com/sun/star/lib/uno/helper/UnoUrl.java index 18700def7f68..576679217c5d 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(); |