diff options
author | Noel Grandin <noel@peralex.com> | 2014-10-16 12:51:54 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-10-17 08:26:19 +0200 |
commit | 12b01b920f42666db84c8be1c9b6fd89a86eea4e (patch) | |
tree | 35a462009765a838e1381fe5d7614caed450daef /sw | |
parent | 3beae0f05d1c8c976dfcebe02c8830752d708c74 (diff) |
java: no need to call String.valueOf to append to a String
Change-Id: I5ef45b971d24dde814ab8cbb2e9503d9da4f0d73
Diffstat (limited to 'sw')
-rw-r--r-- | sw/qa/complex/writer/TextPortionEnumerationTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/qa/complex/writer/TextPortionEnumerationTest.java b/sw/qa/complex/writer/TextPortionEnumerationTest.java index dc6cf15ed8d2..4e62d33d3bc0 100644 --- a/sw/qa/complex/writer/TextPortionEnumerationTest.java +++ b/sw/qa/complex/writer/TextPortionEnumerationTest.java @@ -4107,7 +4107,7 @@ public class TextPortionEnumerationTest private String mkName(String prefix) { - return prefix + String.valueOf(m_Count++); + return prefix + (m_Count++); } private StringPair mkId(String prefix) |