Toggle navigation
Home
java.util.concurrent.Callable to java.util.function.Supplier
No. of Instances - 2
No. of Commits - 1
No. of Projects - {'atomix'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Jdk -> Jdk
Mapping:
Add or Remove Method invocation
this.keyValue.call()
to
this.keyValue.get()
value.call().getBytes()
to
value.get().getBytes()
this.certValue.call()
to
this.certValue.get()
future.complete(callback.call())
to
future.complete(callback.get())
future.complete(callback.call())
to
future.complete(callback.get())
Rename Method invocation
call
to
get