From 1fa094cdb4a6218348724f8cb3f1137195c184f6 Mon Sep 17 00:00:00 2001 From: hengsin Date: Tue, 27 Aug 2024 13:13:41 +0800 Subject: [PATCH] IDEMPIERE-6217 An Error Occurred While Uploading the CSV File as an Attachment (#2446) - Fix Eclipse warnings --- .../src/io/keikai/ui/au/in/TextHeightCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.idempiere.keikai/src/io/keikai/ui/au/in/TextHeightCommand.java b/org.idempiere.keikai/src/io/keikai/ui/au/in/TextHeightCommand.java index a9e57206da..93f3a7eafb 100644 --- a/org.idempiere.keikai/src/io/keikai/ui/au/in/TextHeightCommand.java +++ b/org.idempiere.keikai/src/io/keikai/ui/au/in/TextHeightCommand.java @@ -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() });