summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/helper/URLHelper.java
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-10-15 16:25:10 +0200
committerNoel Grandin <noel@peralex.com>2014-10-16 08:15:52 +0200
commitfa22664be218c211c41342c6296616c316b2c3b1 (patch)
tree2118e12dffce57f5027ef4aed227d27acf8c6ed6 /qadevOOo/runner/helper/URLHelper.java
parent94ae3e827b71da5be77ff04522ff156770801b25 (diff)
java: always use braces for while loops
Change-Id: Iff896b0cace8b8305528b3b0140004ea856169ce
Diffstat (limited to 'qadevOOo/runner/helper/URLHelper.java')
-rw-r--r--qadevOOo/runner/helper/URLHelper.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/qadevOOo/runner/helper/URLHelper.java b/qadevOOo/runner/helper/URLHelper.java
index 4ca5605761d8..fa54496a193a 100644
--- a/qadevOOo/runner/helper/URLHelper.java
+++ b/qadevOOo/runner/helper/URLHelper.java
@@ -139,8 +139,9 @@ public class URLHelper
if (lSubFiles != null)
{
Iterator<File> aSnapshot = lSubFiles.iterator();
- while (aSnapshot.hasNext())
+ while (aSnapshot.hasNext()) {
lFilteredFiles.add(aSnapshot.next());
+ }
}
}
}