From 4b4bff34027cca49fd13e82d33d1b399848838fa Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 12 Aug 2014 15:27:21 +0200 Subject: java: no need to instantiate String objects directly Change-Id: I7610774c94bf673ed3b574ffce04c4ee6ca93c03 --- sc/qa/complex/dataPilot/_XDataPilotDescriptor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sc/qa') diff --git a/sc/qa/complex/dataPilot/_XDataPilotDescriptor.java b/sc/qa/complex/dataPilot/_XDataPilotDescriptor.java index 3fcee41580db..37ec42ac882f 100644 --- a/sc/qa/complex/dataPilot/_XDataPilotDescriptor.java +++ b/sc/qa/complex/dataPilot/_XDataPilotDescriptor.java @@ -55,7 +55,7 @@ public class _XDataPilotDescriptor { private XDataPilotDescriptor oObj = null; private CellRangeAddress CRA = new CellRangeAddress((short)1, 0, 0, 5, 5); - private String sTag = new String ("XDataPilotDescriptor_Tag"); + private String sTag = "XDataPilotDescriptor_Tag"; private String fieldsNames[]; private int fieldsAmount = 0; private int tEnvFieldsAmount = 0; -- cgit