Compare commits

...

2 Commits

2 changed files with 2 additions and 2 deletions

BIN
src.zip

Binary file not shown.

View File

@ -43,8 +43,8 @@ public class ItemRecovery extends JPanel {
Map<String, List<Integer>> ConfigItemJson = new HashMap<>();
for (int i = 0; i < rowCount; i++) {
String Key = tableModel.getValueAt(i, 2).toString();
Integer A = (int) tableModel.getValueAt(i, 3);
Integer B = (int) tableModel.getValueAt(i, 0);
Integer A = (int) tableModel.getValueAt(i, 0);
Integer B = (int) tableModel.getValueAt(i, 3);
Integer C = (int) tableModel.getValueAt(i, 1);
List<Integer> Data = new ArrayList<>();