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-logging.git


The following commit(s) were added to refs/heads/master by this push:
     new 69f9599  Use *=
69f9599 is described below

commit 69f9599ec86fbe5d633710f43707145bdfbb628c
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Mon Jan 15 09:26:59 2024 -0500

    Use *=
---
 .../java/org/apache/commons/logging/impl/WeakHashtableTestCase.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/src/test/java/org/apache/commons/logging/impl/WeakHashtableTestCase.java 
b/src/test/java/org/apache/commons/logging/impl/WeakHashtableTestCase.java
index 7f3c232..6e082d0 100644
--- a/src/test/java/org/apache/commons/logging/impl/WeakHashtableTestCase.java
+++ b/src/test/java/org/apache/commons/logging/impl/WeakHashtableTestCase.java
@@ -297,7 +297,7 @@ public class WeakHashtableTestCase extends TestCase {
             }
             // create garbage:
             final byte[] b =  new byte[bytz];
-            bytz = bytz * 2;
+            bytz *= 2;
         }
 
         // some JVMs seem to take a little time to put references on

Reply via email to