From b26a43dfcbb824f587895f2ea341542ae8e3eaa7 Mon Sep 17 00:00:00 2001 From: David Hermann Date: Mon, 6 Feb 2023 11:24:45 +0100 Subject: [PATCH] refactoring: Added comments to CommandListener --- src/main/java/org/bitbiome/commands/CommandListener.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/bitbiome/commands/CommandListener.java b/src/main/java/org/bitbiome/commands/CommandListener.java index d59813c..d30ef1f 100644 --- a/src/main/java/org/bitbiome/commands/CommandListener.java +++ b/src/main/java/org/bitbiome/commands/CommandListener.java @@ -6,7 +6,9 @@ import java.util.HashMap; import java.util.Scanner; public class CommandListener { - + // This class is the API between the command interface and the user input + // This class is used to handle all the commands + // The commands are stored in a hashmap private HashMap commands; public CommandListener() {