Skip to content

Commit

Permalink
Remove redundant null initialization in Logfile
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesbraun committed Sep 23, 2023
1 parent 064b7ed commit 1503ba9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/rv/comm/rcssserver/Logfile.java
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ public String processDrawCmds(String line)
ByteBuffer buf = ByteBuffer.wrap(drawCmdBytes);

while (buf.hasRemaining()) {
Command cmd = null;
Command cmd;
try {
cmd = Command.parse(buf);
if (cmd != null) {
Expand Down

0 comments on commit 1503ba9

Please sign in to comment.