Remove unused imports

This commit is contained in:
Ehren Kret
2022-05-20 10:20:45 -07:00
parent 20902df122
commit c38572307d
28 changed files with 19 additions and 67 deletions
@@ -115,7 +115,7 @@ public class PubSubConnection {
byte[] channelName = inputStream.readFully(channelNameHeader.getStringLength());
inputStream.readLine();
IntReply subscriptionCount = new IntReply(inputStream.readLine());
new IntReply(inputStream.readLine());
return new String(channelName);
}