We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea09ae0 commit 1ac8a19Copy full SHA for 1ac8a19
socket/EzySimpleSocketDataDecoder.cs
@@ -23,12 +23,13 @@ public EzySimpleSocketDataDecoder(Object decoder)
23
24
public Object decode(EzyMessage message, byte[] decryptionKey)
25
{
26
- Object answer = decoder.decode(message, decryptionKey);
27
- return answer;
+ return decoder.decode(message, decryptionKey);
28
}
29
30
public void decode(
31
- byte[] bytes, EzyCallback<EzyMessage> callback)
+ byte[] bytes,
+ EzyCallback<EzyMessage> callback
32
+ )
33
34
predecode(bytes);
35
decoder.decode(buffer, queue);
0 commit comments