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
UUIDEditor checks if the supplied value hasText; whereas, StringToUUIDConverter checks if the supplied value hasLength. Similarly, StringToUUIDConverter trims the supplied value, but UUIDEditor does not.
Deliverables
Switch to StringUtils.hasText in StringToUUIDConverter to align with the behavior of UUIDEditor.
Use String#trim() in UUIDEditor to align with the behavior of StringToUUIDConverter.
Overview
UUIDEditorchecks if the supplied valuehasText; whereas,StringToUUIDConverterchecks if the supplied valuehasLength. Similarly,StringToUUIDConvertertrims the supplied value, butUUIDEditordoes not.Deliverables
StringUtils.hasTextinStringToUUIDConverterto align with the behavior ofUUIDEditor.String#trim()inUUIDEditorto align with the behavior ofStringToUUIDConverter.