Skip to content
This repository has been archived by the owner on May 5, 2024. It is now read-only.

Commit

Permalink
Fixed a problem in project loading/saving
Browse files Browse the repository at this point in the history
  • Loading branch information
tomas-pluskal committed Jul 26, 2019
1 parent 4c9096d commit 8703a87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public void run() {

final Pattern rawFilePattern = Pattern.compile("Raw data file #([\\d]+) (.*)\\.xml$");
final Pattern scansFilePattern = Pattern.compile("Raw data file #([\\d]+) (.*)\\.scans$");
final Pattern peakListPattern = Pattern.compile("Feature list #([\\d]+) (.*)\\.xml$");
final Pattern peakListPattern = Pattern.compile("Peak list #([\\d]+) (.*)\\.xml$");

boolean versionInformationLoaded = false;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ private void savePeakLists(ZipOutputStream zipStream)

logger.info("Saving feature list: " + peakLists[i].getName());

String peakListSavedName = "Feature list #" + (i + 1) + " " + peakLists[i].getName();
String peakListSavedName = "Peak list #" + (i + 1) + " " + peakLists[i].getName();

zipStream.putNextEntry(new ZipEntry(peakListSavedName + ".xml"));

Expand Down

0 comments on commit 8703a87

Please sign in to comment.