summaryrefslogtreecommitdiffstats
path: root/filter/qa/complex
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-10-15 14:17:37 +0200
committerNoel Grandin <noel@peralex.com>2014-10-16 08:15:44 +0200
commit0f86ae06896d01b5a7b7903e9c5ef3c473aefb7c (patch)
tree0eae160ec16cb2b50fa5aa32b85157dc5b595b55 /filter/qa/complex
parentjava: use 'Short.valueOf' instead of 'new Short' (diff)
downloadcore-0f86ae06896d01b5a7b7903e9c5ef3c473aefb7c.tar.gz
core-0f86ae06896d01b5a7b7903e9c5ef3c473aefb7c.zip
java: no need to call toString() on a String object
Change-Id: I05fa4bf198b3d77b1217eb65b5a1c79915016522
Diffstat (limited to 'filter/qa/complex')
-rw-r--r--filter/qa/complex/filter/detection/typeDetection/Helper.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/qa/complex/filter/detection/typeDetection/Helper.java b/filter/qa/complex/filter/detection/typeDetection/Helper.java
index d590f2766f3b..fb7a7ecddff8 100644
--- a/filter/qa/complex/filter/detection/typeDetection/Helper.java
+++ b/filter/qa/complex/filter/detection/typeDetection/Helper.java
@@ -153,7 +153,7 @@ public class Helper {
}
nextIsData = true;
} else {
- vData.add(myToken.toString());
+ vData.add(myToken);
dataCount++;
nextIsData = false;
}