Skip to content

Commit

Permalink
Merge branch 'master' into bndtools
Browse files Browse the repository at this point in the history
  • Loading branch information
hengsin committed Aug 27, 2024
2 parents f0e0ec3 + 1fa094c commit 8f8aea8
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 8f8aea8

Please sign in to comment.