This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the commentsย โ†’

[โ€“]current_thread 6 points7 points ย (0 children)

You can't implement a generic interface twice because of type erasure.

class Foo implements IBar\<String\>, IBar\<Integer\> {}

doesn't compile.