Closedown
This commit is contained in:
@@ -422,8 +422,8 @@ public class TestingListDetails extends javax.swing.JPanel {
|
||||
HashMap mParameterAttributes = new HashMap(); //contians value and description
|
||||
for(int row=0 ; row<jTableParams.getRowCount() ; row++){
|
||||
String sParam = jTableParams.getValueAt(row, 0).toString();
|
||||
String sVal = jTableParams.getValueAt(row, 1).toString();
|
||||
String sDescr = jTableParams.getValueAt(row, 2).toString();
|
||||
String sVal = "\"" + jTableParams.getValueAt(row, 1).toString() + "\"";
|
||||
String sDescr = "\"" +jTableParams.getValueAt(row, 2).toString() + "\"";
|
||||
mParameterAttributes = new HashMap();
|
||||
mParameterAttributes.put("value", (Object) sVal);
|
||||
mParameterAttributes.put("description", sDescr);
|
||||
|
||||
Reference in New Issue
Block a user