fix: guarded suspension checkstyle

This commit is contained in:
Ilkka Seppälä
2024-04-23 20:11:10 +03:00
parent 3d48f06980
commit c0e20ec570
2 changed files with 2 additions and 2 deletions
@@ -29,7 +29,7 @@ import java.util.concurrent.TimeUnit;
import lombok.extern.slf4j.Slf4j;
/**
* <p>Guarded-suspension is a concurrent design pattern for handling situation when to execute some
* Guarded-suspension is a concurrent design pattern for handling situation when to execute some
* action we need condition to be satisfied.
* The implementation utilizes a GuardedQueue, which features two primary methods: `get` and `put`.
* The key condition governing these operations is that elements cannot be retrieved (`get`) from
@@ -32,7 +32,7 @@ import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Test;
/**
* Test for Guarded Queue
* Test for Guarded Queue.
*/
@Slf4j
class GuardedQueueTest {