bug6215: updated IncrementalLeaderboardDTO.ser after moving classes

This commit is contained in:
Axel Uhl
2026-03-04 14:38:11 +01:00
parent 0bfbeb05d7
commit 1769ebfb1f
2 changed files with 1 additions and 1 deletions
Binary file not shown.
@@ -896,7 +896,7 @@ public class SailingServiceImpl extends ResultCachingProxiedRemoteServiceServlet
// total distance traveled in meters has to be expanded for the test to work.
final boolean storeLeaderboardForTesting = false;
if (storeLeaderboardForTesting) {
ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(new File("../com.sap.sailing.domain.test/resources/IncrementalLeaderboardDTO.ser")));
ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(File.createTempFile("IncrementalLeaderboardDTO", ".ser")));
oos.writeObject(leaderboardDTO);
oos.close();
}