Kaydet (Commit) bd9cd1a3 authored tarafından rbuj's avatar rbuj Kaydeden (comit) Noel Grandin

qadevOOo: Convert a primitive type into a string

Change-Id: I1a840346e75a3d7dd0de761660a0ea95c7ee034b
Reviewed-on: https://gerrit.libreoffice.org/11370Reviewed-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
Tested-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
üst dcd5aa95
...@@ -64,11 +64,11 @@ public class SOfficeFactory { ...@@ -64,11 +64,11 @@ public class SOfficeFactory {
public static SOfficeFactory getFactory(XMultiServiceFactory xMSF) { public static SOfficeFactory getFactory(XMultiServiceFactory xMSF) {
SOfficeFactory soFactory = lookup.get(Integer.valueOf(xMSF.hashCode()).toString()); SOfficeFactory soFactory = lookup.get(Integer.toString(xMSF.hashCode()));
if (soFactory == null) { if (soFactory == null) {
soFactory = new SOfficeFactory(xMSF); soFactory = new SOfficeFactory(xMSF);
lookup.put(Integer.valueOf(xMSF.hashCode()).toString(), soFactory); lookup.put(Integer.toString(xMSF.hashCode()), soFactory);
} }
return soFactory; return soFactory;
......
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