summaryrefslogtreecommitdiff
path: root/cli_ure
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 /cli_ure
parenta274d19d116671d67cf63bcc5dc8639e385394d6 (diff)
java: use an empty block rather than an empty statement
Change-Id: I05e60964521d6ec3694483816d91359fb12c8e4b
Diffstat (limited to 'cli_ure')
-rw-r--r--cli_ure/qa/climaker/ClimakerTestCase.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli_ure/qa/climaker/ClimakerTestCase.java b/cli_ure/qa/climaker/ClimakerTestCase.java
index ea78b2b7d071..344433d65545 100644
--- a/cli_ure/qa/climaker/ClimakerTestCase.java
+++ b/cli_ure/qa/climaker/ClimakerTestCase.java
@@ -80,7 +80,7 @@ class Reader extends Thread
try
{
byte[] buf = new byte[1024];
- while (-1 != is.read(buf));
+ while (-1 != is.read(buf)) {}
}
catch (java.io.IOException exc)
{