From c2126bef76970b384c20c3cf4f2d34d4411a44bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ilkka=20Sepp=C3=A4l=C3=A4?= Date: Sat, 20 Mar 2021 14:32:09 +0200 Subject: [PATCH] #590 fix checkstyle error --- balking/src/main/java/com/iluwatar/balking/App.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/balking/src/main/java/com/iluwatar/balking/App.java b/balking/src/main/java/com/iluwatar/balking/App.java index dcdaf4c61..644a344f4 100644 --- a/balking/src/main/java/com/iluwatar/balking/App.java +++ b/balking/src/main/java/com/iluwatar/balking/App.java @@ -32,10 +32,11 @@ import lombok.extern.slf4j.Slf4j; * then the method will return without doing anything. Objects that use this pattern are generally * only in a state that is prone to balking temporarily but for an unknown amount of time * - *

In this example implementation, {@link WashingMachine} is an object that has two states in which - * it can be: ENABLED and WASHING. If the machine is ENABLED, the state changes to WASHING using a - * thread-safe method. On the other hand, if it already has been washing and any other thread - * executes {@link WashingMachine#wash()} it won't do that and returns without doing anything. + *

In this example implementation, {@link WashingMachine} is an object that has two states in + * which it can be: ENABLED and WASHING. If the machine is ENABLED, the state changes to WASHING + * using a thread-safe method. On the other hand, if it already has been washing and any other + * thread executes {@link WashingMachine#wash()} it won't do that and returns without doing + * anything. */ @Slf4j public class App {