summaryrefslogtreecommitdiff
path: root/qadevOOo/tests
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-12 15:27:21 +0200
committerNoel Grandin <noel@peralex.com>2014-08-19 14:57:18 +0200
commit4b4bff34027cca49fd13e82d33d1b399848838fa (patch)
tree361bde1ae9cf88160694bec9d5f3c1893d398f66 /qadevOOo/tests
parentc552aac9f889b094caaa35c3fd9d12fe7c3fc73c (diff)
java: no need to instantiate String objects directly
Change-Id: I7610774c94bf673ed3b574ffce04c4ee6ca93c03
Diffstat (limited to 'qadevOOo/tests')
-rw-r--r--qadevOOo/tests/java/ifc/sheet/_XDataPilotDescriptor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/qadevOOo/tests/java/ifc/sheet/_XDataPilotDescriptor.java b/qadevOOo/tests/java/ifc/sheet/_XDataPilotDescriptor.java
index dbcd70bdd543..c0265af60709 100644
--- a/qadevOOo/tests/java/ifc/sheet/_XDataPilotDescriptor.java
+++ b/qadevOOo/tests/java/ifc/sheet/_XDataPilotDescriptor.java
@@ -58,7 +58,7 @@ public class _XDataPilotDescriptor extends MultiMethodTest {
public XDataPilotDescriptor oObj = null;
CellRangeAddress CRA = new CellRangeAddress((short)1, 1, 1, 5, 5);
CellRangeAddress oldCRA = null ;
- String sTag = new String ("XDataPilotDescriptor_Tag");
+ String sTag = "XDataPilotDescriptor_Tag";
String fieldsNames[];
int fieldsAmount = 0;
int tEnvFieldsAmount = 0;