Skip to content

Commit 77a5343

Browse files
committed
fixed pmd violation
1 parent 2ed7acb commit 77a5343

File tree

1 file changed

+1
-1
lines changed
  • converter/src/main/java/com/iluwatar/converter

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public static void main(String[] args) {
4848

4949
UserDto dtoUser = new UserDto("John", "Doe", true, "whatever[at]wherever.com");
5050
User user = userConverter.convertFromDto(dtoUser);
51-
UserDto dtoUserCopy = userConverter.convertFromEntity(user);
51+
System.out.println("Entity converted from DTO:" + user);
5252

5353
ArrayList<User> users = Lists.newArrayList(new User("Camile", "Tough", false, "124sad"),
5454
new User("Marti", "Luther", true, "42309fd"), new User("Kate", "Smith", true, "if0243"));

0 commit comments

Comments
 (0)