Skip to content

Commit

Permalink
fix import issues
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadilipkolli committed Dec 2, 2024
1 parent 04c1dd0 commit bd6fe79
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest;
import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.ScrollPosition;
import org.springframework.data.domain.Sort;
import org.springframework.data.domain.Window;
import org.springframework.data.jpa.domain.Specification;
Expand All @@ -27,9 +28,7 @@ public class AnimalService {
private final AnimalRepository animalRepository;
private final AnimalMapper animalMapper;

public AnimalService(
com.example.keysetpagination.services.AnimalRepository animalRepository,
com.example.keysetpagination.services.AnimalMapper animalMapper) {
public AnimalService(AnimalRepository animalRepository, AnimalMapper animalMapper) {
this.animalRepository = animalRepository;
this.animalMapper = animalMapper;
}
Expand Down

0 comments on commit bd6fe79

Please sign in to comment.