You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In line 269 of FlatWithOctetsFW.lengthOctets2 method there is unnecessary checking which will never be triggered as it is private. Since there is no way enforce that line it should be deleted.
if (value < 0) {
throw new IllegalArgumentException(String.format("Value %d too low for field \"lengthOctets2\"", value));
}
The text was updated successfully, but these errors were encountered:
In line 269 of FlatWithOctetsFW.lengthOctets2 method there is unnecessary checking which will never be triggered as it is private. Since there is no way enforce that line it should be deleted.
The text was updated successfully, but these errors were encountered: