only:code formatting

This commit is contained in:
rusefillc 2023-12-26 12:39:55 -05:00
parent 204ca9dc36
commit ba225cd089
1 changed files with 5 additions and 5 deletions

View File

@ -235,12 +235,12 @@ public class StartupFrame {
private void applyKnownPorts(SerialPortScanner.AvailableHardware currentHardware) {
List<String> ports = currentHardware.getKnownPorts();
log.info("Rendering available ports: " + ports);
connectPanel.setVisible(!ports.isEmpty());
noPortsMessage.setVisible(ports.isEmpty());
log.info("Rendering available ports: " + ports);
connectPanel.setVisible(!ports.isEmpty());
noPortsMessage.setVisible(ports.isEmpty());
applyPortSelectionToUIcontrol(ports);
UiUtils.trueLayout(connectPanel);
applyPortSelectionToUIcontrol(ports);
UiUtils.trueLayout(connectPanel);
}
public static void setFrameIcon(Frame frame) {