summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-13 09:32:50 +0200
committerNoel Grandin <noel@peralex.com>2014-08-20 10:35:53 +0200
commit2922a967a1da5f9c0a07b5390906307d0ae6fe48 (patch)
treebc8d0a6f25e5d058adecb016f619096d64c4a484 /filter
parent188af1e56e3280ea4446e694cfc5c2b4abbe8c3b (diff)
java: Avoid naming non-fields with the prefix m_
found by PMD Change-Id: I5955cfc9c4d777496a2e8e4b2c422a51764a8bc1
Diffstat (limited to 'filter')
-rw-r--r--filter/qa/complex/filter/detection/typeDetection/Helper.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/filter/qa/complex/filter/detection/typeDetection/Helper.java b/filter/qa/complex/filter/detection/typeDetection/Helper.java
index 81bd8bb64b3d..d590f2766f3b 100644
--- a/filter/qa/complex/filter/detection/typeDetection/Helper.java
+++ b/filter/qa/complex/filter/detection/typeDetection/Helper.java
@@ -238,12 +238,12 @@ public class Helper {
ArrayList<String> vReturn = new ArrayList<String>();
ArrayList<String> placeHolders = new ArrayList<String>();
- Iterator<String> m_params = m_param.keySet().iterator();
+ Iterator<String> paramsIter = m_param.keySet().iterator();
String placeHolder = (String)m_param.get("placeHolder");
// get all place holders from typeDetection.csv
- while (m_params.hasNext()){
- String holderKey = m_params.next();
+ while (paramsIter.hasNext()){
+ String holderKey = paramsIter.next();
if (holderKey.startsWith(placeHolder)){
placeHolders.add(holderKey);
}