summaryrefslogtreecommitdiff
path: root/qadevOOo
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-21 08:40:13 +0200
committerNoel Grandin <noel@peralex.com>2014-10-07 13:20:03 +0200
commit58e5a71c2e66f053876ebbe37fa4ae383af2d8fc (patch)
tree627daea3a7f9e868d44cc46cfb36fc06aa8557af /qadevOOo
parent68fa1410975ccecc35db8a97669f0fbe5ef9b451 (diff)
while loop that ends in a return is more accurately an if block
Change-Id: I94b74b46b185e1061b6b72acdf3d9dc0c1d122c8
Diffstat (limited to 'qadevOOo')
-rw-r--r--qadevOOo/runner/convwatch/DB.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/qadevOOo/runner/convwatch/DB.java b/qadevOOo/runner/convwatch/DB.java
index 808c8ce01537..70a25597af89 100644
--- a/qadevOOo/runner/convwatch/DB.java
+++ b/qadevOOo/runner/convwatch/DB.java
@@ -349,7 +349,7 @@ public class DB extends DBHelper
String sResult = aResultList.get(i);
StringTokenizer aTokenizer = new StringTokenizer(sResult,",",false);
- while (aTokenizer.hasMoreTokens())
+ if (aTokenizer.hasMoreTokens())
{
String sToken = aTokenizer.nextToken();
int nIndex = sToken.indexOf("uuid()=");