Browse Source

Merge branch 'master' of https://git.zipcode.rocks/Cohort4.2/Quiz4

Lauren Green 6 years ago
parent
commit
cdc7a8a855
1 changed files with 3 additions and 2 deletions
  1. 3
    2
      src/main/java/rocks/zipcode/io/quiz4/generics/GenericUtils.java

+ 3
- 2
src/main/java/rocks/zipcode/io/quiz4/generics/GenericUtils.java View File

@@ -8,11 +8,12 @@ import java.util.TreeSet;
8 8
  * @author leon on 11/12/2018.
9 9
  */
10 10
 public class GenericUtils {
11
-    public static <_ extends Comparable> Iterable<Iterable<_>> powerSet(Set<_> originalSet) {
11
+    public static <_ extends Comparable> Iterable<? extends Iterable<_>> powerSet(Set<_> originalSet) {
12 12
         return null;
13 13
     }
14 14
 
15
-    public static <_ extends Comparable> Iterable<Iterable<_>> powerSet(_... originalSet) {
15
+    public static <_ extends Comparable> Iterable<? extends Iterable<_>> powerSet(_... originalSet) {
16 16
         return powerSet(new TreeSet<>(Arrays.asList(originalSet)));
17 17
     }
18 18
 }
19
+