removed suffix parameter from tcp driver op dispensers (We have string templates to do that now)

This commit is contained in:
Mike Yaacoub
2023-01-06 13:15:03 -05:00
parent 6881c0790a
commit ea93403f4f
2 changed files with 0 additions and 2 deletions

View File

@@ -31,7 +31,6 @@ public class TcpClientOpDispenser extends BaseOpDispenser<TcpClientOp, TcpClient
this.ctxFunction = ctxfunc;
LongFunction<Object> objectFunction = cmd.getAsRequiredFunction("stmt", Object.class);
LongFunction<String> stringFunction = l -> objectFunction.apply(l).toString();
cmd.enhanceFuncOptionally(stringFunction,"suffix",String.class,(a, b) -> a+b);
this.outFunction = stringFunction;
}

View File

@@ -31,7 +31,6 @@ public class TcpServerOpDispenser extends BaseOpDispenser<TcpServerOp,TcpServerA
this.ctxFunction = ctxfunc;
LongFunction<Object> objectFunction = cmd.getAsRequiredFunction("stmt", Object.class);
LongFunction<String> stringFunction = l -> objectFunction.apply(l).toString();
cmd.enhanceFuncOptionally(stringFunction,"suffix",String.class,(a, b) -> a+b);
this.outFunction = stringFunction;
}