Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
delchev committed Jun 23, 2024
1 parent 3ee36dd commit 38a7b79
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public Tenant save(Tenant tenant) {
public Optional<Tenant> findById(String id) {
return tenantRepository.findById(id);
}

/**
* Delete.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ interface UserRepository extends JpaRepository<User, String> {
* @return the optional
*/
Optional<User> findUserByUsernameAndTenantId(String username, String tenantId);

/**
* Find users by tenant id.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public void deleteUser(String id) {
public Optional<User> findUserByUsernameAndTenantId(String username, String tenantId) {
return userRepository.findUserByUsernameAndTenantId(username, tenantId);
}

/**
* Find users by tenant id.
*
Expand Down

0 comments on commit 38a7b79

Please sign in to comment.