Displaying differences for changeset
 
display as  

src/java/cfa/guiTimeseries_Model.java

@@ -1456,24 +1456,6 @@
         }
     }
     /**
-     * Writes out the dynamically created paragraph to be displayed to the user along with the LDC graph
-     * @param dynamicParagraph  string array to be written as each line of the text file
-     * @throws IOException
-     */
-    private void writeSummary(String[] dynamicParagraph) throws IOException{
-        String path = mainFolder + File.separator + getParagraph().getName();
-        FileWriter writer =  new FileWriter(path, false);
-        PrintWriter print_line = new PrintWriter(writer);
-
-        //Output data to text file
-        for(int i = 0; i < dynamicParagraph.length; i++) {
-            print_line.printf("%s" + "%n", dynamicParagraph[i]);
-        }
-        print_line.close();
-        writer.close();
-        System.out.println("Text File located at:\t" + path);
-    }
-    /**
      * Writes out the error message, if any, for finding the file and then exits the program
      * @param error  string array to be written as each line of an error message
      * @throws IOException

src/java/m/cfa/DurationCurve_V1_0.java

@@ -8,7 +8,6 @@
 import oms3.annotations.Description;
 import oms3.annotations.Name;
 import oms3.annotations.VersionInfo;
-import org.apache.commons.io.FileUtils;
 import org.codehaus.jettison.json.*;
 import csip.utils.JSONUtils;
 import csip.utils.Services;