|
@@ -80,7 +80,6 @@ public class AccountResource {
|
80
|
80
|
if (!user.isPresent()) {
|
81
|
81
|
throw new InternalServerErrorException("No user was found for this activation key");
|
82
|
82
|
}
|
83
|
|
- System.out.println("2");
|
84
|
83
|
}
|
85
|
84
|
|
86
|
85
|
/**
|
|
@@ -131,8 +130,8 @@ public class AccountResource {
|
131
|
130
|
if (!user.isPresent()) {
|
132
|
131
|
throw new InternalServerErrorException("User could not be found");
|
133
|
132
|
}
|
134
|
|
- userService.updateUser(userDTO.getFirstName(), userDTO.getLastName(), userDTO.getEmail(),
|
135
|
|
- userDTO.getLangKey(), userDTO.getImageUrl());
|
|
133
|
+
|
|
134
|
+ userService.updateUser(userDTO.getFirstName(), userDTO.getLastName(), userDTO.getEmail(), userDTO.getLangKey(), userDTO.getImageUrl());
|
136
|
135
|
}
|
137
|
136
|
|
138
|
137
|
/**
|