Skip to content

Commit

Permalink
CCMSPUI-379 Fixed ClientDetailRepository and checkstyle issue
Browse files Browse the repository at this point in the history
Signed-off-by: Jamie Briggs <jamie.briggs@digital.justice.gov.uk>
  • Loading branch information
Jamie Briggs committed Feb 18, 2025
1 parent 4cb6221 commit 565128b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public Page<ClientDetail> findAll(final String firstName, final String surname,
query.setParameter("size", pageable.getPageSize());

final String countClientDetails =
"SELECT COUNT(*) FROM XXCCMS.XXCCMS_GET_CLIENT_DETAILS_V"
"SELECT COUNT(*) FROM XXCCMS.XXCCMS_GET_CLIENT_DETAILS_V "
+ getFilterSql(firstName, surname, dateOfBirth, gender, clientReferenceNumber,
homeOfficeReference, nationalInsuranceNumber);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* @see Pageable
*/
@Component
public final class NotificationSearchRepository extends BaseEntityManagerRepository{
public final class NotificationSearchRepository extends BaseEntityManagerRepository {

public NotificationSearchRepository(EntityManager entityManager) {
super(entityManager);
Expand Down

0 comments on commit 565128b

Please sign in to comment.