Skip to content

Commit

Permalink
javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
delchev committed Jun 23, 2024
1 parent 38a7b79 commit 4a9c474
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ public Optional<Tenant> findById(String id) {
* Delete.
*
* @param tenant the tenant
* @return the tenant
*/
public void delete(Tenant tenant) {
tenantRepository.delete(tenant);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ public User updateUser(String id, String username, String password, String tenan
* Delete user.
*
* @param id the id
* @return the user
*/
public void deleteUser(String id) {
User user = userRepository.findById(id)
Expand Down

0 comments on commit 4a9c474

Please sign in to comment.