IDEMPIERE-6217 An Error Occurred While Uploading the CSV File as an Attachment (#2446)

- Fix Eclipse warnings
This commit is contained in:
hengsin 2024-08-27 13:13:41 +08:00 committed by Carlos Ruiz
parent 9f14c96134
commit ec7d0b5eb2
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ public class TextHeightCommand extends AbstractCommand implements Command {
if (comp == null) if (comp == null)
throw new UiException(MZk.ILLEGAL_REQUEST_COMPONENT_REQUIRED, TextHeightCommand.class.getCanonicalName()); throw new UiException(MZk.ILLEGAL_REQUEST_COMPONENT_REQUIRED, TextHeightCommand.class.getCanonicalName());
final Map data = (Map) request.getData(); final Map<?, ?> data = (Map<?, ?>) request.getData();
if (data == null || data.size() != 4) if (data == null || data.size() != 4)
throw new UiException(MZk.ILLEGAL_REQUEST_WRONG_DATA, new Object[] {Objects.toString(data), TextHeightCommand.class.getCanonicalName() }); throw new UiException(MZk.ILLEGAL_REQUEST_WRONG_DATA, new Object[] {Objects.toString(data), TextHeightCommand.class.getCanonicalName() });