Skip to content

Commit

Permalink
Make field final
Browse files Browse the repository at this point in the history
  • Loading branch information
ml-james committed Sep 18, 2024
1 parent 7f3a706 commit 5cb60ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test-support/java/com/lmax/solana4j/TestDataType.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public final class TestDataType<T>
public static final TestDataType<TestKeyPair> TEST_KEY_PAIR = new TestDataType<>(x -> Base58.encode(x.getPrivateKeyBytes()));
public static final TestDataType<AddressLookupTable> ADDRESS_LOOKUP_TABLE = new TestDataType<>(x -> x.getLookupTableAddress().base58());

private Function<T, String> transform;
private final Function<T, String> transform;

public TestDataType(final Function<T, String> transform)
{
Expand Down

0 comments on commit 5cb60ad

Please sign in to comment.