Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ abstract class EntityGraphFactory {
/**
* Create an {@link EntityGraph} from a collection of properties.
*
* @param entityManager
* @param domainType
* @param properties
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@
public class JpaMetamodel {

private static final Map<Metamodel, JpaMetamodel> CACHE = new ConcurrentHashMap<>(4);
private static final Set<PersistenceType> ENTITY_OR_MAPPED_SUPERCLASS = EnumSet.of(PersistenceType.ENTITY,
PersistenceType.MAPPED_SUPERCLASS);

private final Metamodel metamodel;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class CustomGenericJpaRepository<T, ID extends Serializable> extends Simp
CustomGenericRepository<T, ID> {

/**
* @param domainClass
* @param metadata
* @param entityManager
*/
public CustomGenericJpaRepository(JpaEntityInformation<T, ID> metadata, EntityManager entityManager) {
Expand Down