Skip to content

Commit

Permalink
IDEMPIERE-6217 An Error Occurred While Uploading the CSV File as an A…
Browse files Browse the repository at this point in the history
…ttachment (idempiere#2446)

- Fix Eclipse warnings
  • Loading branch information
hengsin authored Aug 27, 2024
1 parent eb0d4c2 commit 1fa094c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void process(AuRequest request) {
if (comp == null)
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)
throw new UiException(MZk.ILLEGAL_REQUEST_WRONG_DATA, new Object[] {Objects.toString(data), TextHeightCommand.class.getCanonicalName() });

Expand Down

0 comments on commit 1fa094c

Please sign in to comment.