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:
parent
ebeeebbcea
commit
1e04460c9a
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue