java: use an empty block rather than an empty statement

Change-Id: I05e60964521d6ec3694483816d91359fb12c8e4b
This commit is contained in:
Noel Grandin
2014-08-05 12:12:05 +02:00
parent a274d19d11
commit d07539ea5e
5 changed files with 5 additions and 5 deletions

View File

@@ -126,7 +126,7 @@ public class SVersionRCFile {
String s;
while ((s = br.readLine()) != null &&
(s.equals(VERSIONS_LINE)) != true);
(s.equals(VERSIONS_LINE)) != true) {}
while ((s = br.readLine()) != null &&
(s.equals("")) != true) {