diff --git a/plugins/TestingList.java b/plugins/TestingList.java index 94d6d5a..16b3f1c 100644 --- a/plugins/TestingList.java +++ b/plugins/TestingList.java @@ -385,9 +385,9 @@ public class TestingList extends Panel { File[] listOfFiles = folder.listFiles(); for (File listOfFile : listOfFiles) { if (listOfFile.isFile()) { - this.jTextField1.append("File " + listOfFile.getName()); + this.jTextField1.append("\nFile " + listOfFile.getName()); } else if (listOfFile.isDirectory()) { - this.jTextField1.append("Directory " + listOfFile.getName()); + this.jTextField1.append("\nDirectory " + listOfFile.getName()); File configFile = new File(listOfFile.getPath() + FilenameUtils.separatorsToSystem("/.config")); if(configFile.exists() && !configFile.isDirectory()){ InputStream is = new FileInputStream(configFile); @@ -406,6 +406,7 @@ public class TestingList extends Panel { } } addToTable(prop.getProperty("name"), prop.getProperty("description"), prop.getProperty("tests")); + this.jTextField1.append("\nProperties: "); this.jTextField1.append(prop.getProperty("name")); this.jTextField1.append(prop.getProperty("description")); this.jTextField1.append(prop.getProperty("tests"));