shemekh
Results
1
issues of
shemekh
## Expected Behavior I have a paging repository as follows: ``` public interface PagingMessageLogRepository extends PagingAndSortingRepository { Page findByInstanceIdOrderByInsertedDateDesc(Long instanceId, Pageable pageable); Page findByInstanceIdInOrderByInsertedDateDesc(List instanceId, Pageable pageable); } ``` instanceId...