From b65f4a80da28e7ec4de16c8b1abf906e8d7be2c5 Mon Sep 17 00:00:00 2001 From: tom-overton Date: Mon, 28 Aug 2023 17:15:15 -0700 Subject: Remove accidentally added code --- src/com/sneed/pkrandom/romhandlers/AbstractRomHandler.java | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/com/sneed/pkrandom/romhandlers/AbstractRomHandler.java b/src/com/sneed/pkrandom/romhandlers/AbstractRomHandler.java index edf7b50..658bb01 100755 --- a/src/com/sneed/pkrandom/romhandlers/AbstractRomHandler.java +++ b/src/com/sneed/pkrandom/romhandlers/AbstractRomHandler.java @@ -5291,15 +5291,7 @@ public abstract class AbstractRomHandler implements RomHandler { Collections.shuffle(newItems, this.random); Collections.shuffle(newTMs, this.random); - - List oldItems = this.getRegularFieldItems(); - String[] itemNames = this.getItemNames(); - for (int i = 0; i < oldItems.size(); i++) { - String oldName = itemNames[oldItems.get(i)]; - String newName = itemNames[newItems.get(i)]; - System.out.println(oldName + " => " + newName); - } - + this.setRegularFieldItems(newItems); this.setFieldTMs(newTMs); } -- cgit v1.2.3