From d07539ea5e7c2d99e9cc58a00726ecebe56cf018 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 5 Aug 2014 12:12:05 +0200 Subject: java: use an empty block rather than an empty statement Change-Id: I05e60964521d6ec3694483816d91359fb12c8e4b --- scripting/java/org/openoffice/idesupport/SVersionRCFile.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripting/java/org') 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) { -- cgit