Skip to content

Commit 24e0b28

Browse files
committed
Sort members
1 parent 52c06be commit 24e0b28

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/test/java/org/apache/commons/lang3/builder/HashCodeBuilderTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@
3131
*/
3232
class HashCodeBuilderTest extends AbstractLangTest {
3333

34-
private static final int INITIAL = 17;
35-
private static final int CONSTANT = 37;
36-
3734
/**
3835
* A reflection test fixture.
3936
*/
@@ -51,7 +48,6 @@ public int hashCode() {
5148
return HashCodeBuilder.reflectionHashCode(this);
5249
}
5350
}
54-
5551
/**
5652
* A reflection test fixture.
5753
*/
@@ -194,6 +190,10 @@ public int hashCode() {
194190

195191
}
196192

193+
private static final int INITIAL = 17;
194+
195+
private static final int CONSTANT = 37;
196+
197197
@Test
198198
void testBoolean() {
199199
assertEquals(INITIAL * CONSTANT + 0, new HashCodeBuilder(INITIAL, CONSTANT).append(true).toHashCode());

0 commit comments

Comments
 (0)