summaryrefslogtreecommitdiff
path: root/filter/qa
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-02-23 19:09:11 +0100
committerJulien Nabet <serval2412@yahoo.fr>2013-02-23 19:09:11 +0100
commit2dca0ccf0760a64eab986c178873926a6a125cc5 (patch)
treeb6c347ade8f5aaaf7961accefb9e2eb289b09806 /filter/qa
parenta97a16d330b238f2d05a6f073d417830468e54e2 (diff)
Fix typo recieved/received
Change-Id: I0c838f5c06ff26149113a9bbab970d314758c648
Diffstat (limited to 'filter/qa')
-rw-r--r--filter/qa/complex/filter/detection/typeDetection/Helper.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/qa/complex/filter/detection/typeDetection/Helper.java b/filter/qa/complex/filter/detection/typeDetection/Helper.java
index 233f42a24aa2..97918345cbd3 100644
--- a/filter/qa/complex/filter/detection/typeDetection/Helper.java
+++ b/filter/qa/complex/filter/detection/typeDetection/Helper.java
@@ -134,13 +134,13 @@ public class Helper {
// example: data = "firstData;secondData;;forthData"
// => three tokens => missing one data because the imagine
- // "thirdData" was not recieved by data.nextToken()
+ // "thirdData" was not received by data.nextToken()
// Therefore here comes a special handling for empty datas
boolean nextIsData = false;
int dataCount = 0;
while (data.hasMoreTokens()) {
String myToken = data.nextToken();
- // if the "thirdData" will be recieved, myToken=";" but
+ // if the "thirdData" will be received, myToken=";" but
// vData must add an empty String
if (myToken.equals(";")){
if (nextIsData ) {