Kaydet (Commit) 1e04460c authored tarafından rbuj's avatar rbuj Kaydeden (comit) David Tardon

javaunohelper: use a character literal

Change-Id: Ib0a69ac4714cd694ccd6a9bea87e32c1aadb0428
Reviewed-on: https://gerrit.libreoffice.org/11433Reviewed-by: 's avatarDavid Tardon <dtardon@redhat.com>
Tested-by: 's avatarDavid Tardon <dtardon@redhat.com>
üst ebeeebbc
...@@ -297,7 +297,7 @@ public class UnoUrl { ...@@ -297,7 +297,7 @@ public class UnoUrl {
throws com.sun.star.lang.IllegalArgumentException { throws com.sun.star.lang.IllegalArgumentException {
String partName; String partName;
String theParamPart; String theParamPart;
int index = thePart.indexOf(","); int index = thePart.indexOf(',');
if (index != -1) { if (index != -1) {
partName = thePart.substring(0, index).trim(); partName = thePart.substring(0, index).trim();
theParamPart = thePart.substring(index + 1).trim(); theParamPart = thePart.substring(index + 1).trim();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment