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>
This commit is contained in:
rbuj 2014-09-13 10:55:02 +02:00 committed by David Tardon
parent ebeeebbcea
commit 1e04460c9a

View file

@ -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();