summaryrefslogtreecommitdiff
path: root/javaunohelper/com
diff options
context:
space:
mode:
Diffstat (limited to 'javaunohelper/com')
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/UnoUrl.java2
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();