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

commit 24e0b283d1f5887457c30e239f0f1ddb79d9f7bd
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Jan 27 20:25:41 2026 -0500

    Sort members
---
 .../org/apache/commons/lang3/builder/HashCodeBuilderTest.java     | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/src/test/java/org/apache/commons/lang3/builder/HashCodeBuilderTest.java 
b/src/test/java/org/apache/commons/lang3/builder/HashCodeBuilderTest.java
index 9f5244d40..01f0e775b 100644
--- a/src/test/java/org/apache/commons/lang3/builder/HashCodeBuilderTest.java
+++ b/src/test/java/org/apache/commons/lang3/builder/HashCodeBuilderTest.java
@@ -31,9 +31,6 @@
  */
 class HashCodeBuilderTest extends AbstractLangTest {
 
-    private static final int INITIAL = 17;
-    private static final int CONSTANT = 37;
-
     /**
      * A reflection test fixture.
      */
@@ -51,7 +48,6 @@ public int hashCode() {
             return HashCodeBuilder.reflectionHashCode(this);
         }
     }
-
     /**
      * A reflection test fixture.
      */
@@ -194,6 +190,10 @@ public int hashCode() {
 
     }
 
+    private static final int INITIAL = 17;
+
+    private static final int CONSTANT = 37;
+
     @Test
     void testBoolean() {
         assertEquals(INITIAL * CONSTANT + 0, new HashCodeBuilder(INITIAL, 
CONSTANT).append(true).toHashCode());

Reply via email to