summaryrefslogtreecommitdiff
path: root/filter/qa/complex/filter/detection/typeDetection/Helper.java
diff options
context:
space:
mode:
Diffstat (limited to 'filter/qa/complex/filter/detection/typeDetection/Helper.java')
-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);
}