Skip to content

Commit bfad3e2

Browse files
committed
fix: remove redundant variables
Signed-off-by: “Kevin” <kevlar_ksb@yahoo.com>
1 parent a1311f6 commit bfad3e2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/com/uber/cadence/samples/query/OrderFulfillmentWorkflow.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ public static final class WorkflowImpl implements WorkflowIface {
107107
*/
108108
private final ArrayDeque<Object> inbox = new ArrayDeque<>();
109109

110-
private final String cachedWorkflowId = "";
111-
private final String cachedRunId = "";
110+
private final String cachedWorkflowId;
111+
private final String cachedRunId;
112112

113113
/** Inbox wrapper so {@code mark_ready_to_ship} vs {@code mark_delivered} are not ambiguous. */
114114
private static final class ReadyToShipMessage {

0 commit comments

Comments
 (0)