Skip to content

Commit

Permalink
Fix checkstyle UnsafeBufferStatusIndicatorTest. (#332)
Browse files Browse the repository at this point in the history
  • Loading branch information
pveentjer authored Feb 24, 2025
1 parent 26ec8fd commit 3729965
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ void canWrapDifferentKindsOfBuffers()
}

@Test
public void testVolatile(){
public void testVolatile()
{
final int counterId = 2;
final UnsafeBuffer buffer = new UnsafeBuffer(allocateDirect(5 * COUNTER_LENGTH));
final UnsafeBufferStatusIndicator statusIndicator = new UnsafeBufferStatusIndicator(buffer, counterId);
Expand All @@ -48,7 +49,8 @@ public void testVolatile(){
}

@Test
public void testReleaseAcquire(){
public void testReleaseAcquire()
{
final int counterId = 2;
final UnsafeBuffer buffer = new UnsafeBuffer(allocateDirect(5 * COUNTER_LENGTH));
final UnsafeBufferStatusIndicator statusIndicator = new UnsafeBufferStatusIndicator(buffer, counterId);
Expand All @@ -58,7 +60,8 @@ public void testReleaseAcquire(){
}

@Test
public void testOpaque(){
public void testOpaque()
{
final int counterId = 2;
final UnsafeBuffer buffer = new UnsafeBuffer(allocateDirect(5 * COUNTER_LENGTH));
final UnsafeBufferStatusIndicator statusIndicator = new UnsafeBufferStatusIndicator(buffer, counterId);
Expand Down

0 comments on commit 3729965

Please sign in to comment.