You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2019/09/01 22:18:50 UTC

[commons-bcel] 05/06: Remove redundant semicolon.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-bcel.git

commit 745d93ca5551d7db9e87c5270473581144a91359
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Sep 1 18:17:02 2019 -0400

    Remove redundant semicolon.
---
 src/test/java/org/apache/bcel/PerformanceTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/bcel/PerformanceTest.java b/src/test/java/org/apache/bcel/PerformanceTest.java
index 404b699..66fa8b2 100644
--- a/src/test/java/org/apache/bcel/PerformanceTest.java
+++ b/src/test/java/org/apache/bcel/PerformanceTest.java
@@ -39,7 +39,7 @@ import junit.framework.TestCase;
 
 public final class PerformanceTest extends TestCase {
 
-    private static final boolean REPORT = Boolean.parseBoolean(System.getProperty("PerformanceTest.report", "true"));;
+    private static final boolean REPORT = Boolean.parseBoolean(System.getProperty("PerformanceTest.report", "true"));
 
     private static byte[] read(final InputStream is) throws IOException {
         if (is == null) {