Instead of
public static XCodec.ResponseParameters decodeResponse(ClientMessage clientMessage) {
ClientMessage.ForwardFrameIterator iterator = clientMessage.frameIterator();
ResponseParameters response = new ResponseParameters();
//empty initial frame
iterator.next();
return response;
}
we can just leave this method empty or even not generate the method.
Instead of
we can just leave this method empty or even not generate the method.