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

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


The following commit(s) were added to refs/heads/master by this push:
     new 283f8de2 Fix checkstyle
283f8de2 is described below

commit 283f8de2dc739d34351d5f53618b00f89cb77c76
Author: Alex Herbert <[email protected]>
AuthorDate: Thu Aug 27 18:52:02 2026 +0100

    Fix checkstyle
---
 .../org/apache/commons/numbers/examples/jmh/arrays/PartitionTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/commons-numbers-examples/examples-jmh/src/test/java/org/apache/commons/numbers/examples/jmh/arrays/PartitionTest.java
 
b/commons-numbers-examples/examples-jmh/src/test/java/org/apache/commons/numbers/examples/jmh/arrays/PartitionTest.java
index b4ec887f..d7092d5d 100644
--- 
a/commons-numbers-examples/examples-jmh/src/test/java/org/apache/commons/numbers/examples/jmh/arrays/PartitionTest.java
+++ 
b/commons-numbers-examples/examples-jmh/src/test/java/org/apache/commons/numbers/examples/jmh/arrays/PartitionTest.java
@@ -1003,7 +1003,7 @@ class PartitionTest {
     @Test
     void testPartitionKBM() {
         final double[] a = {0, 0, 0, 0, 1};
-        final int bound[] = {0};
+        final int[] bound = {0};
         final double p0 = Partition.partitionKBM(a, 0, a.length - 1, 2, bound);
         Assertions.assertEquals(p0, 0);
         Assertions.assertEquals(bound[0], 3);

Reply via email to