hazelcast / hazelcast/hazelcast-client-protocol
VOID response type can be replaced with empty generated method.
Open
2.x
- Dominant language
- Jinja
- Stars
- 16
- Forks
- 79
- PR merge metrics
- No merged PRs in 30d
Description
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.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.