This repository was archived by the owner on Feb 25, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +0
-18
lines changed
src/main/java/java9/util/stream Expand file tree Collapse file tree 1 file changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -902,12 +902,6 @@ static final class OfInt
902
902
public Spliterator .OfInt spliterator () {
903
903
return new InternalNodeSpliterator .OfInt (this );
904
904
}
905
-
906
- // @Override
907
- // public int[] newArray(int count) {
908
- // // desugar bug
909
- // return java9.util.stream.Node.OfInt.super.newArray(count);
910
- // }
911
905
}
912
906
913
907
static final class OfLong
@@ -922,12 +916,6 @@ static final class OfLong
922
916
public Spliterator .OfLong spliterator () {
923
917
return new InternalNodeSpliterator .OfLong (this );
924
918
}
925
-
926
- // @Override
927
- // public long[] newArray(int count) {
928
- // // desugar bug
929
- // return java9.util.stream.Node.OfLong.super.newArray(count);
930
- // }
931
919
}
932
920
933
921
static final class OfDouble
@@ -942,12 +930,6 @@ static final class OfDouble
942
930
public Spliterator .OfDouble spliterator () {
943
931
return new InternalNodeSpliterator .OfDouble (this );
944
932
}
945
-
946
- // @Override
947
- // public double[] newArray(int count) {
948
- // // desugar bug
949
- // return java9.util.stream.Node.OfDouble.super.newArray(count);
950
- // }
951
933
}
952
934
}
953
935
You can’t perform that action at this time.
0 commit comments