diff options
Diffstat (limited to 'tests/bugs162/pr242797/case3/GenericMethodInterface.java')
-rw-r--r-- | tests/bugs162/pr242797/case3/GenericMethodInterface.java | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/tests/bugs162/pr242797/case3/GenericMethodInterface.java b/tests/bugs162/pr242797/case3/GenericMethodInterface.java index c99f2e9e9..4c45256a6 100644 --- a/tests/bugs162/pr242797/case3/GenericMethodInterface.java +++ b/tests/bugs162/pr242797/case3/GenericMethodInterface.java @@ -1,12 +1,7 @@ import java.util.List; - -/* - * Created on Aug 19, 2008 - */ - public interface GenericMethodInterface { - public <T> List<T> getStuff(); + public <T extends Type1> List<T> getStuff(); } |