Skip to content

Commit

Permalink
Added ProfileBuffer path
Browse files Browse the repository at this point in the history
- Forgot to add correct path to the profiles
  • Loading branch information
towner-10 committed Jan 20, 2020
1 parent 0685ce9 commit 45eadf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/viking/ProfileBuffer.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ public class ProfileBuffer {
private Double[][] rightProfile;

public ProfileBuffer(String folder) {
leftProfile = CSVFileManager.pathLeft(folder);
rightProfile = CSVFileManager.pathRight(folder);
leftProfile = CSVFileManager.pathLeft("/home/lvuser/paths/" + folder);
rightProfile = CSVFileManager.pathRight("/home/lvuser/paths/" + folder);
}

public Double[][] getLeftProfile() {
Expand Down

0 comments on commit 45eadf2

Please sign in to comment.