Skip to content

Commit

Permalink
remove NonNull on integers
Browse files Browse the repository at this point in the history
  • Loading branch information
Pugwash1 committed Jun 13, 2019
1 parent 0f584cf commit 3513542
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion java/src/jmri/jmrit/beantable/RouteTableAction.java
Expand Up @@ -2141,7 +2141,7 @@ private static void setLockTurnoutModes(@Nonnull String[] newArray) {
lockTurnoutInputModes = newArray;
}

private synchronized static void setRowHeight(@Nonnull int newVal) {
private synchronized static void setRowHeight(int newVal) {
ROW_HEIGHT = newVal;
}

Expand Down
Expand Up @@ -942,7 +942,7 @@ public void setValueAt(Object type, int r, int c) {
private ArrayList<SignalGroupSensor> _sensorList; // array of all Sensors
private ArrayList<SignalGroupSensor> _includedSensorList;

private synchronized static void setRowHeight(@Nonnull int newVal) {
private synchronized static void setRowHeight(int newVal) {
ROW_HEIGHT = newVal;
}

Expand Down
2 changes: 1 addition & 1 deletion java/src/jmri/jmrit/beantable/oblock/TableFrames.java
Expand Up @@ -419,7 +419,7 @@ public void actionPerformed(ActionEvent e) {
_openMenu.add(openTurnoutPath);
}

private synchronized static void setRowHeight(@Nonnull int newVal) {
private synchronized static void setRowHeight(int newVal) {
ROW_HEIGHT = newVal;
}

Expand Down

0 comments on commit 3513542

Please sign in to comment.