summaryrefslogtreecommitdiffstats
path: root/sangria-contextual/src/main/java/com/tavianator/sangria/contextual/ContextSensitiveBindingBuilder.java
diff options
context:
space:
mode:
Diffstat (limited to 'sangria-contextual/src/main/java/com/tavianator/sangria/contextual/ContextSensitiveBindingBuilder.java')
-rw-r--r--sangria-contextual/src/main/java/com/tavianator/sangria/contextual/ContextSensitiveBindingBuilder.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/sangria-contextual/src/main/java/com/tavianator/sangria/contextual/ContextSensitiveBindingBuilder.java b/sangria-contextual/src/main/java/com/tavianator/sangria/contextual/ContextSensitiveBindingBuilder.java
index dc2b60b..b5797de 100644
--- a/sangria-contextual/src/main/java/com/tavianator/sangria/contextual/ContextSensitiveBindingBuilder.java
+++ b/sangria-contextual/src/main/java/com/tavianator/sangria/contextual/ContextSensitiveBindingBuilder.java
@@ -31,20 +31,20 @@ public interface ContextSensitiveBindingBuilder<T> {
/**
* See the EDSL examples {@link ContextSensitiveBinder here}.
*/
- void toContextSensitiveProvider(Class<? extends ContextSensitiveProvider<T>> type);
+ void toContextSensitiveProvider(Class<? extends ContextSensitiveProvider<? extends T>> type);
/**
* See the EDSL examples {@link ContextSensitiveBinder here}.
*/
- void toContextSensitiveProvider(TypeLiteral<? extends ContextSensitiveProvider<T>> type);
+ void toContextSensitiveProvider(TypeLiteral<? extends ContextSensitiveProvider<? extends T>> type);
/**
* See the EDSL examples {@link ContextSensitiveBinder here}.
*/
- void toContextSensitiveProvider(Key<? extends ContextSensitiveProvider<T>> type);
+ void toContextSensitiveProvider(Key<? extends ContextSensitiveProvider<? extends T>> key);
/**
* See the EDSL examples {@link ContextSensitiveBinder here}.
*/
- void toContextSensitiveProvider(ContextSensitiveProvider<T> provider);
+ void toContextSensitiveProvider(ContextSensitiveProvider<? extends T> provider);
}