Skip to content

Commit

Permalink
fixup! fixing javadocs
Browse files Browse the repository at this point in the history
Signed-off-by: Ilya Buziuk <ibuziuk@redhat.com>
  • Loading branch information
ibuziuk committed Dec 8, 2022
1 parent 9652639 commit 17e050a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
import org.eclipse.che.workspace.infrastructure.kubernetes.KubernetesClientFactory;

/**
* Creates {@link Secret} with user profile information such as his id and name. This serves as a
* way for DevWorkspaces to acquire information about the user.
* Creates {@link Secret} with user profile information such as his id, name and email. This serves
* as a way for DevWorkspaces to acquire information about the user.
*
* @author Pavol Baran
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public UserManager(
}

/**
* The user data is no longer persisted in the database
* Creates new user and his profile. NOTE: The user data is no longer persisted in the database.
*
* @param newUser created user
* @throws NullPointerException when {@code newUser} is null
Expand All @@ -101,7 +101,7 @@ public User create(User newUser, boolean isTemporary) throws ConflictException,
return user;
}

/** @deprecated user information is no longer persisted in the database */
/** user information is no longer persisted in the database */
@Transactional(rollbackOn = {RuntimeException.class, ApiException.class})
protected void doCreate(UserImpl user, boolean isTemporary)
throws ConflictException, ServerException {}
Expand Down

0 comments on commit 17e050a

Please sign in to comment.