summaryrefslogtreecommitdiff
path: root/scripting
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-05 12:12:05 +0200
committerNoel Grandin <noel@peralex.com>2014-08-08 09:48:18 +0200
commitd07539ea5e7c2d99e9cc58a00726ecebe56cf018 (patch)
treeebd4e598876850b063f238d1a8bcc6b34cc7b509 /scripting
parenta274d19d116671d67cf63bcc5dc8639e385394d6 (diff)
java: use an empty block rather than an empty statement
Change-Id: I05e60964521d6ec3694483816d91359fb12c8e4b
Diffstat (limited to 'scripting')
-rw-r--r--scripting/java/org/openoffice/idesupport/SVersionRCFile.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripting/java/org/openoffice/idesupport/SVersionRCFile.java b/scripting/java/org/openoffice/idesupport/SVersionRCFile.java
index 149eca0e0101..94389e53e395 100644
--- a/scripting/java/org/openoffice/idesupport/SVersionRCFile.java
+++ b/scripting/java/org/openoffice/idesupport/SVersionRCFile.java
@@ -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) {