Skip to content

Commit 90ae145

Browse files
committed
Fix javadoc links
1 parent 935e5b1 commit 90ae145

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/org/apposed/appose/ScriptSyntax.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public interface ScriptSyntax {
121121
* </ul>
122122
* <p>
123123
* If the result is a method reference, it will be auto-proxied as a {@link WorkerObject}
124-
* that can be called using {@link WorkerObject#call(Object...)}.
124+
* that can be called using {@link WorkerObject#invoke(Object...)}.
125125
* </p>
126126
*
127127
* @param objectVarName The name of the variable referencing the object.

src/main/java/org/apposed/appose/WorkerObject.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ public Object invoke(Object... args) throws InterruptedException, TaskException
208208
* <p>
209209
* If the result is a method reference or other non-JSON-serializable object,
210210
* it will be auto-proxied as a {@code WorkerObject} that can be called using
211-
* {@link #call(Object...)}.
211+
* {@link #invoke(Object...)}.
212212
* </p>
213213
* <p>
214214
* This is a blocking operation that waits for the remote operation to complete.

0 commit comments

Comments
 (0)