Skip to content

Commit

Permalink
HSEARCH-4041 Remove deprecated RoutingKeyBridge
Browse files Browse the repository at this point in the history
  • Loading branch information
fax4ever authored and yrodiere committed Oct 30, 2020
1 parent 8c0a3b3 commit 4ea166f
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 315 deletions.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
* A binder that upon building retrieves a delegate binder from the bean provider,
* then delegates to that binder.
*/
@SuppressWarnings("deprecation")
public final class BeanDelegatingBinder
implements TypeBinder, PropertyBinder, RoutingBinder,
MarkerBinder, IdentifierBinder, ValueBinder {
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,9 @@
* since the only feature provided by each interface is an access to the extension.
* This might change in the future, though, which is why the interfaces themselves are split.
*/
@SuppressWarnings("deprecation")
public final class SessionBasedBridgeOperationContext
implements IdentifierBridgeFromDocumentIdentifierContext,
RoutingBridgeRouteContext,
org.hibernate.search.mapper.pojo.bridge.runtime.RoutingKeyBridgeToRoutingKeyContext,
TypeBridgeWriteContext,
PropertyBridgeWriteContext,
ValueBridgeFromIndexedValueContext {
Expand All @@ -56,11 +54,6 @@ public <T> T extension(RoutingBridgeRouteContextExtension<T> extension) {
return DslExtensionState.returnIfSupported( extension, extension.extendOptional( this, sessionContext ) );
}

@Override
public <T> T extension(org.hibernate.search.mapper.pojo.bridge.runtime.RoutingKeyBridgeToRoutingKeyContextExtension<T> extension) {
return DslExtensionState.returnIfSupported( extension, extension.extendOptional( this, sessionContext ) );
}

@Override
public <T> T extension(TypeBridgeWriteContextExtension<T> extension) {
return DslExtensionState.returnIfSupported( extension, extension.extendOptional( this, sessionContext ) );
Expand Down

0 comments on commit 4ea166f

Please sign in to comment.