Skip to content

Commit 801505c

Browse files
authored
Changed output file path
1 parent 383599a commit 801505c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/AndroidPatternGenerator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public static void main(String[] args) throws IOException{
2323
ArrayList<String> patternList = new ArrayList<String>();
2424
patternList.addAll(possiblePatterns);
2525

26-
final String sequentialFilePath = "sequential.txt";
26+
final String sequentialFilePath = "output/sequential.txt";
2727
System.out.print("\nWriting sequential output to [" + sequentialFilePath + "]...");
2828
Collections.sort(patternList);
2929
BufferedWriter sequentialWriter = new BufferedWriter(new FileWriter(sequentialFilePath));
@@ -32,7 +32,7 @@ public static void main(String[] args) throws IOException{
3232
sequentialWriter.close();
3333
System.out.println("Done");
3434

35-
final String shuffledFilePath = "shuffled.txt";
35+
final String shuffledFilePath = "output/shuffled.txt";
3636
System.out.print("\nWriting shuffled output to [" + shuffledFilePath + "]...");
3737
Collections.shuffle(patternList);
3838
BufferedWriter shuffledWriter = new BufferedWriter(new FileWriter(shuffledFilePath));

0 commit comments

Comments
 (0)