This is an automated email from the ASF dual-hosted git repository.
hansva pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/hop.git
The following commit(s) were added to refs/heads/main by this push:
new c0402066da Remove dead or debug code (#6097)
c0402066da is described below
commit c0402066da08170a931e5e2c2899f53fc78e9677
Author: Nicolas Adment <[email protected]>
AuthorDate: Tue Dec 2 16:05:10 2025 +0100
Remove dead or debug code (#6097)
---
.../java/org/apache/hop/ui/hopgui/context/GuiContextUtil.java | 8 +-------
1 file changed, 1 insertion(+), 7 deletions(-)
diff --git
a/ui/src/main/java/org/apache/hop/ui/hopgui/context/GuiContextUtil.java
b/ui/src/main/java/org/apache/hop/ui/hopgui/context/GuiContextUtil.java
index 3a8cd1aa39..7f49d04120 100644
--- a/ui/src/main/java/org/apache/hop/ui/hopgui/context/GuiContextUtil.java
+++ b/ui/src/main/java/org/apache/hop/ui/hopgui/context/GuiContextUtil.java
@@ -45,7 +45,7 @@ public class GuiContextUtil {
PROVIDER = (ISingletonProvider)
ImplementationLoader.newInstance(GuiContextUtil.class);
}
- public static final GuiContextUtil getInstance() {
+ public static GuiContextUtil getInstance() {
return (GuiContextUtil) PROVIDER.getInstanceInternal();
}
@@ -160,12 +160,6 @@ public class GuiContextUtil {
return true;
}
- List<String> fileTypes = new ArrayList<>();
- for (GuiAction action : actions) {
- fileTypes.add(
- action.getType().name() + " - " + action.getName() + " : " +
action.getTooltip());
- }
-
contextDialog =
new ContextDialog(
parent, message, clickLocation, actions,
contextHandler.getContextId());