@@ -86,32 +86,32 @@ public class GuiController {
8686 private static final String BLANK_MAC = "00:00:00:00:00:00" ;
8787 private static final String GENERAL_IP = "0.0.0.0" ;
8888
89- @ SuppressWarnings ("for-rollout:NullAway" )
90- private Manager manager ;
89+ @ SuppressWarnings ("for-rollout:NullAway" )
90+ private Manager manager ;
9191
9292 private boolean closing = false ;
9393 private boolean editingTable = false ;
9494 private boolean loadingPanel = false ;
9595 private final Map <String , PcTracker > generalSystems = new HashMap <>();
9696 private final Map <String , String > ipToMac = new HashMap <>();
9797
98- @ SuppressWarnings ("for-rollout:NullAway" )
99- private TrayIcon trayIcon ;
98+ @ SuppressWarnings ("for-rollout:NullAway" )
99+ private TrayIcon trayIcon ;
100100
101101 private final GuiLog pxeLogger = new GuiLog ();
102102 private final GuiLog tftpLogger = new GuiLog ();
103103 private final GuiLog httpLogger = new GuiLog ();
104104
105- @ SuppressWarnings ("for-rollout:NullAway" )
106- @ FXML
105+ @ SuppressWarnings ("for-rollout:NullAway" )
106+ @ FXML
107107 private TabPane mainTabPanel ;
108108
109- @ SuppressWarnings ("for-rollout:NullAway" )
110- @ FXML
109+ @ SuppressWarnings ("for-rollout:NullAway" )
110+ @ FXML
111111 private Pane topTabControlPanel ;
112112
113- @ SuppressWarnings ("for-rollout:NullAway" )
114- @ FXML
113+ @ SuppressWarnings ("for-rollout:NullAway" )
114+ @ FXML
115115 private TabPane logsTabPane ;
116116
117117 /**
@@ -257,8 +257,8 @@ private void addToHashMaps(String logline, long timestamp) {
257257 * @param logparts split up log
258258 * @param timestamp time stamp of the event
259259 */
260- @ SuppressWarnings ("for-rollout:NullAway" )
261- private void twoPartLog (String [] ipParts , String [] logparts , long timestamp ) {
260+ @ SuppressWarnings ("for-rollout:NullAway" )
261+ private void twoPartLog (String [] ipParts , String [] logparts , long timestamp ) {
262262 if (ipToMac .containsKey (ipParts [1 ])) {
263263 String mac = ipToMac .get (ipParts [1 ]);
264264 PcTracker singlePc = generalSystems .get (mac );
@@ -1420,8 +1420,8 @@ private ListView<String> getRulesView() {
14201420 * @param id item selected
14211421 * @return node of that item
14221422 */
1423- @ SuppressWarnings ("for-rollout:NullAway" )
1424- private Node getSettingsItem (String id ) {
1423+ @ SuppressWarnings ("for-rollout:NullAway" )
1424+ private Node getSettingsItem (String id ) {
14251425 AnchorPane settingsOuterAnchor =
14261426 (AnchorPane ) mainTabPanel .getTabs ().get (2 ).getContent ();
14271427 AnchorPane settingsInnerAnchor =
0 commit comments