Skip to content

Commit

Permalink
Handle import to avoid unused import (#28266)
Browse files Browse the repository at this point in the history
  • Loading branch information
qmonmert authored Dec 22, 2024
1 parent 80e53e6 commit b6d9645
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import <%= packageName %>.repository.UserRepository;
import <%= packageName %>.security.AuthoritiesConstants;
import <%= packageName %>.service.MailService;
import org.springframework.data.domain.Sort;
import java.util.Collections;
import <%= packageName %>.service.UserService;
import <%= packageName %>.service.dto.<%= user.adminUserDto %>;
import <%= packageName %>.web.rest.errors.BadRequestAlertException;
Expand Down Expand Up @@ -77,6 +76,7 @@ import java.net.URISyntaxException;
import java.util.ArrayList;
import java.util.List;
import java.util.Arrays;
import java.util.Collections;
<%_ } else { _%>
import java.util.*;
<%_ } _%>
Expand Down

0 comments on commit b6d9645

Please sign in to comment.