Skip to content

Commit

Permalink
HSEARCH-2770 Remove deprecation of ExtendedSearchIntegrator#getConfig…
Browse files Browse the repository at this point in the history
…uredTypesPolymorphic(Classes)
  • Loading branch information
Sanne committed Jul 7, 2017
1 parent b14a058 commit 3167085
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 16 deletions.
Expand Up @@ -470,12 +470,6 @@ public int getFilterCacheBitResultsSize() {
return cacheBitResultsSize;
}

@Override
@Deprecated
public IndexedTypeSet getConfiguredTypesPolymorphic(Class<?>[] types) {
return getConfiguredTypesPolymorphic( IndexedTypeSets.fromClasses( types ) );
}

@Override
public IndexedTypeSet getConfiguredTypesPolymorphic(IndexedTypeSet types) {
return configuredTypeHierarchy.getConfiguredClasses( types );
Expand Down
Expand Up @@ -159,12 +159,6 @@ public int getFilterCacheBitResultsSize() {
return delegate.getFilterCacheBitResultsSize();
}

@Override
@Deprecated
public IndexedTypeSet getConfiguredTypesPolymorphic(Class<?>[] classes) {
return delegate.getConfiguredTypesPolymorphic( classes );
}

@Override
@Deprecated
public IndexedTypeSet getIndexedTypesPolymorphic(Class<?>[] classes) {
Expand Down
Expand Up @@ -48,12 +48,9 @@ public interface ExtendedSearchIntegrator extends SearchIntegrator {
* "Configured" types are types that Hibernate Search was instructed to take into consideration,
* i.e. types returned by {@link SearchConfiguration#getClassMappings()}.
*
* @param classes an array of types
* @param types
* @return the set of configured subtypes
*/
@Deprecated
IndexedTypeSet getConfiguredTypesPolymorphic(Class<?>[] classes);

IndexedTypeSet getConfiguredTypesPolymorphic(IndexedTypeSet types);

/**
Expand Down

0 comments on commit 3167085

Please sign in to comment.