Skip to content

Commit

Permalink
Fix a compilation error with the Eclipse compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
yrodiere committed Aug 6, 2020
1 parent 020b668 commit 21dd9f3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ public final class RoutingBridgeDocumentRouter<E> implements DocumentRoutes, Poj
private static final Log log = LoggerFactory.make( Log.class, MethodHandles.lookup() );

private final RoutingBridgeRouteContext context;
private final RoutingBridge<E> routingBridge;
private final RoutingBridge<? super E> routingBridge;
private final Object entityIdentifier;
private final E entity;

private DocumentRouteImpl currentRoute = null;
private boolean skip = false;

public RoutingBridgeDocumentRouter(RoutingBridgeRouteContext context, RoutingBridge<E> routingBridge,
public RoutingBridgeDocumentRouter(RoutingBridgeRouteContext context, RoutingBridge<? super E> routingBridge,
Object entityIdentifier, E entity) {
this.context = context;
this.routingBridge = routingBridge;
Expand Down

0 comments on commit 21dd9f3

Please sign in to comment.