Apply spotless changes

forgot to run spotless on the last update

Signed-off-by: Bob Eckhoff <katmandodo@yahoo.com>
This commit is contained in:
Bob Eckhoff 2024-11-10 11:25:48 -05:00
parent 99ed3d5000
commit 2a73de9d06

View File

@ -422,8 +422,8 @@ public class ConnectionManager {
} }
} else { } else {
droppedCommands = droppedCommands + 1; droppedCommands = droppedCommands + 1;
logger.debug("Problem with reading V2 response, skipping {} skipped count since startup {}", command, logger.debug("Problem with reading V2 response, skipping {} skipped count since startup {}",
droppedCommands); command, droppedCommands);
} }
} }
return; return;
@ -435,13 +435,13 @@ public class ConnectionManager {
} }
} catch (SocketException e) { } catch (SocketException e) {
droppedCommands = droppedCommands + 1; droppedCommands = droppedCommands + 1;
logger.debug("Socket exception on IP: {}, skipping command {} skipped count since startup {}", ipAddress, command, logger.debug("Socket exception on IP: {}, skipping command {} skipped count since startup {}", ipAddress,
droppedCommands); command, droppedCommands);
throw new MideaConnectionException(e); throw new MideaConnectionException(e);
} catch (IOException e) { } catch (IOException e) {
droppedCommands = droppedCommands + 1; droppedCommands = droppedCommands + 1;
logger.debug("IO exception on IP: {}, skipping command {} skipped count since startup {}", ipAddress, command, logger.debug("IO exception on IP: {}, skipping command {} skipped count since startup {}", ipAddress,
droppedCommands); command, droppedCommands);
throw new MideaConnectionException(e); throw new MideaConnectionException(e);
} }
} }