@@ -16,6 +16,15 @@ public class Storage {
this.file = new File(filePath);
}
+ @Override
+ public String toString() {
+ if (input != null && !input.isEmpty()) {
+ return "Storage[input=" + input + "]";
+ } else {
+ return "Storage[input=not set]";
+ }
+ }