We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ed7acb commit 77a5343Copy full SHA for 77a5343
converter/src/main/java/com/iluwatar/converter/App.java
@@ -48,7 +48,7 @@ public static void main(String[] args) {
48
49
UserDto dtoUser = new UserDto("John", "Doe", true, "whatever[at]wherever.com");
50
User user = userConverter.convertFromDto(dtoUser);
51
- UserDto dtoUserCopy = userConverter.convertFromEntity(user);
+ System.out.println("Entity converted from DTO:" + user);
52
53
ArrayList<User> users = Lists.newArrayList(new User("Camile", "Tough", false, "124sad"),
54
new User("Marti", "Luther", true, "42309fd"), new User("Kate", "Smith", true, "if0243"));
0 commit comments