Merging error didn't include the update to Assert.State

This commit is contained in:
Cyrus 2021-02-09 06:54:31 -05:00
parent 5e4dc8ce82
commit 69cd06df3b

View File

@ -111,7 +111,9 @@ public class ComponentInfo implements Serializable {
componentManufacturer,
componentModel,
componentSerial,
componentRevision));
componentRevision),
"ComponentInfo: manufacturer and/or "
+ "model can not be null");
this.componentManufacturer = componentManufacturer.trim();
this.componentModel = componentModel.trim();
if (componentSerial != null) {
@ -143,8 +145,9 @@ public class ComponentInfo implements Serializable {
componentManufacturer,
componentModel,
componentSerial,
componentRevision
));
componentRevision),
"ComponentInfo: manufacturer and/or "
+ "model can not be null");
this.componentManufacturer = componentManufacturer.trim();
this.componentModel = componentModel.trim();
if (componentSerial != null) {