feat(back-end): removed Abstract repository
This commit is contained in:
@@ -1,9 +0,0 @@
|
||||
package com.printcalculator.repository;
|
||||
|
||||
import org.springframework.data.jpa.domain.AbstractAuditable;
|
||||
import org.springframework.data.jpa.repository.JpaRepository;
|
||||
import org.springframework.data.repository.NoRepositoryBean;
|
||||
|
||||
@NoRepositoryBean
|
||||
public interface AbstractAuditableRepository<T extends AbstractAuditable> extends JpaRepository<T, PK> {
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
package com.printcalculator.repository;
|
||||
|
||||
import org.springframework.data.jpa.domain.AbstractPersistable;
|
||||
import org.springframework.data.jpa.repository.JpaRepository;
|
||||
import org.springframework.data.repository.NoRepositoryBean;
|
||||
|
||||
@NoRepositoryBean
|
||||
public interface AbstractPersistableRepository<T extends AbstractPersistable> extends JpaRepository<T, PK> {
|
||||
}
|
||||
Reference in New Issue
Block a user