From 12b01b920f42666db84c8be1c9b6fd89a86eea4e Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 16 Oct 2014 12:51:54 +0200 Subject: java: no need to call String.valueOf to append to a String Change-Id: I5ef45b971d24dde814ab8cbb2e9503d9da4f0d73 --- bean/com/sun/star/comp/beans/LocalOfficeConnection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bean') diff --git a/bean/com/sun/star/comp/beans/LocalOfficeConnection.java b/bean/com/sun/star/comp/beans/LocalOfficeConnection.java index a2f0db9c785c..da8651077ce9 100644 --- a/bean/com/sun/star/comp/beans/LocalOfficeConnection.java +++ b/bean/com/sun/star/comp/beans/LocalOfficeConnection.java @@ -445,7 +445,7 @@ public class LocalOfficeConnection // empty string as bridge name into createBridge. Then we should always get // a new bridge. This does not work because of (i51323). Therefore we // create unique bridge names for the current process. - String sBridgeName = "OOoBean_private_bridge_" + String.valueOf(m_nBridgeCounter++); + String sBridgeName = "OOoBean_private_bridge_" + (m_nBridgeCounter++); try { mBridge = xBridgeFactory.createBridge(sBridgeName, protDcp, xConnection, null); } catch (com.sun.star.bridge.BridgeExistsException e) { -- cgit v1.2.1