orbiter 19 years ago
parent e9aadb2e11
commit d6213f8a85

@ -131,7 +131,9 @@ public class plasmaSwitchboardQueue {
public Entry pop() throws IOException { public Entry pop() throws IOException {
if (sbQueueStack.size() == 0) return null; if (sbQueueStack.size() == 0) return null;
return new Entry(sbQueueStack.pot()); byte[][] b = sbQueueStack.pot();
if (b == null) return null;
return new Entry(b);
} }
public Entry remove(int index) throws IOException { public Entry remove(int index) throws IOException {

Loading…
Cancel
Save