summaryrefslogtreecommitdiff
path: root/base/src/main/java/bjc/utils/cli/objects/BlockReaderCLI.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/src/main/java/bjc/utils/cli/objects/BlockReaderCLI.java')
-rw-r--r--base/src/main/java/bjc/utils/cli/objects/BlockReaderCLI.java30
1 files changed, 0 insertions, 30 deletions
diff --git a/base/src/main/java/bjc/utils/cli/objects/BlockReaderCLI.java b/base/src/main/java/bjc/utils/cli/objects/BlockReaderCLI.java
index 5b14a58..6ab4cec 100644
--- a/base/src/main/java/bjc/utils/cli/objects/BlockReaderCLI.java
+++ b/base/src/main/java/bjc/utils/cli/objects/BlockReaderCLI.java
@@ -26,36 +26,6 @@ public class BlockReaderCLI {
/* Logger. */
private final Logger LOGGER = Logger.getLogger(BlockReaderCLI.class.getName());
- /**
- * The state of the block reader.
- *
- * @author Ben Culkin
- */
- public static class BlockReaderState {
- /**
- * All of the configured block readers.
- */
- public final Map<String, BlockReader> readers;
- /**
- * All of the configured I/O sources.
- */
- public final Map<String, Reader> sources;
-
- /**
- * Create a new set of state for the block reader.
- *
- * @param readers
- * The set of configured block readers.
- *
- * @param sources
- * The set of configured I/O sources.
- */
- public BlockReaderState(Map<String, BlockReader> readers, Map<String, Reader> sources) {
- this.readers = readers;
- this.sources = sources;
- }
- }
-
/* Our state. */
private BlockReaderState stat;