From 6786c732ce35653f711247a037c67c666997f8d5 Mon Sep 17 00:00:00 2001 From: boccioli_m Date: Mon, 16 Oct 2017 14:25:18 +0200 Subject: [PATCH] Closedown --- plugins/TestingListDetails.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/TestingListDetails.java b/plugins/TestingListDetails.java index 0ce799c..a157c8c 100644 --- a/plugins/TestingListDetails.java +++ b/plugins/TestingListDetails.java @@ -359,7 +359,7 @@ public class TestingListDetails extends javax.swing.JPanel { //help text showHelp(details.get("testPath"), details.get("testHelp")); //parameters table - HashMap hParams = (HashMap) details.get("parameters"); + HashMap hParams = (HashMap) hDetails.get("parameters"); String name="", value="", description=""; DefaultTableModel model = (DefaultTableModel) jTableParams.getModel(); @@ -367,9 +367,9 @@ public class TestingListDetails extends javax.swing.JPanel { Object param = entry; if(param instanceof String){ name = (String) param; - HashMap attributes = (HashMap) hParams.get(param); - value = (String) attributes.get("value"); - description = (String) attributes.get("description"); + Details attributes = new Details((HashMap) hParams.get(param)); + value = attributes.get("value"); + description = attributes.get("description"); model.addRow(new Object[]{name, value, description}); } jTableParams.setModel(model);