Skip to content

Commit 4ea8ea4

Browse files
committed
Rename ActivityHandleWrapper to ActivityHandleImpl.
1 parent bc467e8 commit 4ea8ea4

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

temporal-sdk/src/main/java/io/temporal/client/ActivityHandle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,6 @@ static <R> ActivityHandle<R> fromUntyped(UntypedActivityHandle handle, Class<R>
6363
*/
6464
static <R> ActivityHandle<R> fromUntyped(
6565
UntypedActivityHandle handle, Class<R> resultClass, @Nullable Type resultType) {
66-
return new ActivityHandleWrapper<>(handle, resultClass, resultType);
66+
return new ActivityHandleImpl<>(handle, resultClass, resultType);
6767
}
6868
}

temporal-sdk/src/main/java/io/temporal/client/ActivityHandleWrapper.java renamed to temporal-sdk/src/main/java/io/temporal/client/ActivityHandleImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
* ActivityHandle#fromUntyped(UntypedActivityHandle, Class)} or {@link
1212
* ActivityHandle#fromUntyped(UntypedActivityHandle, Class, Type)}.
1313
*/
14-
final class ActivityHandleWrapper<R> implements ActivityHandle<R> {
14+
final class ActivityHandleImpl<R> implements ActivityHandle<R> {
1515

1616
private final UntypedActivityHandle delegate;
1717
private final Class<R> resultClass;
1818
private final @Nullable Type resultType;
1919

20-
ActivityHandleWrapper(
20+
ActivityHandleImpl(
2121
UntypedActivityHandle delegate, Class<R> resultClass, @Nullable Type resultType) {
2222
this.delegate = delegate;
2323
this.resultClass = resultClass;

0 commit comments

Comments
 (0)