Skip to content

Commit

Permalink
Refer to local Consumer type instead of Kotlin test type
Browse files Browse the repository at this point in the history
  • Loading branch information
jhoeller committed Jan 15, 2025
1 parent 9181cce commit 70ceb3a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1785,6 +1785,9 @@ public class MyCollectionSuperclassType extends MySuperclassType<Collection<Stri
}


public interface Consumer<T> {
}

public class Wildcard<T extends CharSequence> {
}

Expand All @@ -1794,7 +1797,6 @@ public class WildcardFixed extends Wildcard<String> {
public class WildcardConsumer<T extends CharSequence & Serializable> implements Consumer<Wildcard<T>> {
}


public class DoubleWildcard<T extends CharSequence & Serializable> {
}

Expand Down

0 comments on commit 70ceb3a

Please sign in to comment.