@@ -3260,7 +3260,7 @@ public <R> Iterator<R> yield(Function<? super T1, ? extends R> f) {
3260
3260
* @return an {@code Iterator} of mapped results
3261
3261
*/
3262
3262
public Iterator <T1 > yield () {
3263
- return yield (Function .identity ());
3263
+ return this . yield (Function .identity ());
3264
3264
}
3265
3265
}
3266
3266
@@ -3559,7 +3559,7 @@ public <R> Option<R> yield(Function<? super T1, ? extends R> f) {
3559
3559
* @return an {@code Iterator} of mapped results
3560
3560
*/
3561
3561
public Option <T1 > yield () {
3562
- return yield (Function .identity ());
3562
+ return this . yield (Function .identity ());
3563
3563
}
3564
3564
}
3565
3565
@@ -3858,7 +3858,7 @@ public <R> Future<R> yield(Function<? super T1, ? extends R> f) {
3858
3858
* @return an {@code Iterator} of mapped results
3859
3859
*/
3860
3860
public Future <T1 > yield () {
3861
- return yield (Function .identity ());
3861
+ return this . yield (Function .identity ());
3862
3862
}
3863
3863
}
3864
3864
@@ -4157,7 +4157,7 @@ public <R> Try<R> yield(Function<? super T1, ? extends R> f) {
4157
4157
* @return an {@code Iterator} of mapped results
4158
4158
*/
4159
4159
public Try <T1 > yield () {
4160
- return yield (Function .identity ());
4160
+ return this . yield (Function .identity ());
4161
4161
}
4162
4162
}
4163
4163
@@ -4456,7 +4456,7 @@ public <R> List<R> yield(Function<? super T1, ? extends R> f) {
4456
4456
* @return an {@code Iterator} of mapped results
4457
4457
*/
4458
4458
public List <T1 > yield () {
4459
- return yield (Function .identity ());
4459
+ return this . yield (Function .identity ());
4460
4460
}
4461
4461
}
4462
4462
@@ -5654,4 +5654,4 @@ public boolean isDefinedAt(T obj) {
5654
5654
}
5655
5655
}
5656
5656
}
5657
- }
5657
+ }
0 commit comments