Skip to content

Commit 811f711

Browse files
committed
Qualify all yield() calls
1 parent 488e9ca commit 811f711

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

vavr/src-gen/main/java/io/vavr/API.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3260,7 +3260,7 @@ public <R> Iterator<R> yield(Function<? super T1, ? extends R> f) {
32603260
* @return an {@code Iterator} of mapped results
32613261
*/
32623262
public Iterator<T1> yield() {
3263-
return yield(Function.identity());
3263+
return this.yield(Function.identity());
32643264
}
32653265
}
32663266

@@ -3559,7 +3559,7 @@ public <R> Option<R> yield(Function<? super T1, ? extends R> f) {
35593559
* @return an {@code Iterator} of mapped results
35603560
*/
35613561
public Option<T1> yield() {
3562-
return yield(Function.identity());
3562+
return this.yield(Function.identity());
35633563
}
35643564
}
35653565

@@ -3858,7 +3858,7 @@ public <R> Future<R> yield(Function<? super T1, ? extends R> f) {
38583858
* @return an {@code Iterator} of mapped results
38593859
*/
38603860
public Future<T1> yield() {
3861-
return yield(Function.identity());
3861+
return this.yield(Function.identity());
38623862
}
38633863
}
38643864

@@ -4157,7 +4157,7 @@ public <R> Try<R> yield(Function<? super T1, ? extends R> f) {
41574157
* @return an {@code Iterator} of mapped results
41584158
*/
41594159
public Try<T1> yield() {
4160-
return yield(Function.identity());
4160+
return this.yield(Function.identity());
41614161
}
41624162
}
41634163

@@ -4456,7 +4456,7 @@ public <R> List<R> yield(Function<? super T1, ? extends R> f) {
44564456
* @return an {@code Iterator} of mapped results
44574457
*/
44584458
public List<T1> yield() {
4459-
return yield(Function.identity());
4459+
return this.yield(Function.identity());
44604460
}
44614461
}
44624462

@@ -5654,4 +5654,4 @@ public boolean isDefinedAt(T obj) {
56545654
}
56555655
}
56565656
}
5657-
}
5657+
}

0 commit comments

Comments
 (0)