Skip to content

Commit

Permalink
fix bug in appending XML's
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanPreibisch committed Dec 3, 2024
1 parent 683bb12 commit 90ab2e8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,8 @@ else if ( StorageFormat.HDF5.equals(storageType) )
existingSpimData.getStitchingResults(),
existingSpimData.getIntensityAdjustments() );

new XmlIoSpimData2().save( spimDataNew, existingSpimData.getBasePathURI() );
// we are overwriting it
new XmlIoSpimData2().save( spimDataNew, xmlOutPathURI );//existingSpimData.getBasePathURI() );

return new ValuePair<>(tpExists, viewSetupExists);
}
Expand Down

0 comments on commit 90ab2e8

Please sign in to comment.