Compare commits

..

No commits in common. "aab1bba8ac4c3ab56ecf42e716e8679d24023887" and "f8aca03f89d1b8b0e9d6f8c7ba9f39171402a710" have entirely different histories.

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, 0);
Integer B = (int) tableModel.getValueAt(i, 3);
Integer A = (int) tableModel.getValueAt(i, 3);
Integer B = (int) tableModel.getValueAt(i, 0);
Integer C = (int) tableModel.getValueAt(i, 1);
List<Integer> Data = new ArrayList<>();