Skip to content

Commit c1c4411

Browse files
committed
#539 Checkstyle fixes
1 parent 3f272bf commit c1c4411

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

balking/src/main/java/com/iluwatar/balking/WashingMachine.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
import org.slf4j.Logger;
2626
import org.slf4j.LoggerFactory;
2727

28+
/**
29+
* Washing machine class
30+
*/
2831
public class WashingMachine {
2932

3033
private static final Logger LOGGER = LoggerFactory.getLogger(WashingMachine.class);

converter/src/main/java/com/iluwatar/converter/User.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525

2626
import java.util.Objects;
2727

28+
/**
29+
* User class
30+
*/
2831
public class User {
2932
private String firstName;
3033
private String lastName;

converter/src/main/java/com/iluwatar/converter/UserDto.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626

2727
import java.util.Objects;
2828

29+
/**
30+
* User DTO class
31+
*/
2932
public class UserDto {
3033

3134
private String firstName;

0 commit comments

Comments
 (0)