Skip to content

Commit

Permalink
fix: guarded suspension checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
iluwatar committed Apr 23, 2024
1 parent 3d48f06 commit c0e20ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import org.junit.jupiter.api.Test;

/**
* Test for Guarded Queue
* Test for Guarded Queue.
*/
@Slf4j
class GuardedQueueTest {
Expand Down

0 comments on commit c0e20ec

Please sign in to comment.