Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
artempolyvyanyy committed Jun 4, 2024
1 parent e3bb1d5 commit 41a25a3
Show file tree
Hide file tree
Showing 79 changed files with 2 additions and 5,315 deletions.
4 changes: 2 additions & 2 deletions jbpt-core/src/main/java/org/jbpt/utils/IOUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ public static void print(PrintWriter out, String[] row) {
* @param rows a set of string arrays, the lines to write
*/
public static void writeResultsToFile(String fileName, String[] captions, Collection<String[]> rows) {

try {
FileOutputStream stream = new FileOutputStream(new File(fileName));
PrintWriter out = new PrintWriter(stream);
Expand All @@ -167,7 +166,8 @@ public static void writeResultsToFile(String fileName, String[] captions, Collec

out.flush();
stream.close();
System.out.println("Saved results to " + fileName);} catch (Exception e) {
System.out.println("Saved results to " + fileName);
} catch (Exception e) {
System.out.println("Failed to write the results to " + fileName);
e.printStackTrace();
}
Expand Down
16 changes: 0 additions & 16 deletions jbpt-pm/target/classes/META-INF/MANIFEST.MF

This file was deleted.

This file was deleted.

Loading

0 comments on commit 41a25a3

Please sign in to comment.