Skip to content

Commit

Permalink
Fixed checkstyle issues in UnsafeBufferTest
Browse files Browse the repository at this point in the history
  • Loading branch information
pveentjer committed Jan 20, 2025
1 parent 8f645b2 commit 2184d3a
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ public class UnsafeBufferTests
@State
public static class ReleaseAcquireLong
{
private final static int A = 0;
private final static int B = 8;
private static final int A = 0;
private static final int B = 8;
private final UnsafeBuffer buffer = new UnsafeBuffer(BufferUtil.allocateDirectAligned(16, 8));

/**
Expand Down Expand Up @@ -91,8 +91,8 @@ public void acquire(final JJ_Result result)
@State
public static class ReleaseAcquireInt
{
private final static int A = 0;
private final static int B = 4;
private static final int A = 0;
private static final int B = 4;
private final UnsafeBuffer buffer = new UnsafeBuffer(BufferUtil.allocateDirectAligned(8, 4));

/**
Expand Down

0 comments on commit 2184d3a

Please sign in to comment.