From c461cf623ab9250a10b9c239566be4e97ee87d43 Mon Sep 17 00:00:00 2001 From: boccioli_m Date: Tue, 9 Jun 2015 14:58:42 +0200 Subject: [PATCH] Closedown --- plugins/TestingList.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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"));