Skip to content

Commit

Permalink
Remove unneeded Windows file separator
Browse files Browse the repository at this point in the history
  • Loading branch information
MStefko authored Jun 15, 2017
1 parent a7719d0 commit 0c8c584
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ch/epfl/leb/injector/TiffParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public void run() {
// Open the tiff via ImageJ
app.logs().logMessage("Trying to open general tiff.");
Opener o = new Opener();
ImagePlus win = o.openTiff(file.getParent().concat("\\"),file.getName());
ImagePlus win = o.openTiff(file.getParent(),file.getName());
ImageStack stack = win.getImageStack();
// Build up metadata from scratch
m_builder = app.data().getMetadataBuilder();
Expand Down Expand Up @@ -187,4 +187,4 @@ public Datastore getDatastore() {
public SortedCoordsList getCoordsList() {
return coords_list;
}
}
}

0 comments on commit 0c8c584

Please sign in to comment.