Skip to content

Commit dc6819f

Browse files
committed
Don't log a warning when there is no crossing point.
1 parent b3479a7 commit dc6819f

File tree

1 file changed

+1
-2
lines changed
  • openchrom/plugins/net.openchrom.xxd.process.supplier.templates/src/net/openchrom/xxd/process/supplier/templates/peaks

1 file changed

+1
-2
lines changed

openchrom/plugins/net.openchrom.xxd.process.supplier.templates/src/net/openchrom/xxd/process/supplier/templates/peaks/PeakTransfer.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2020, 2025 Lablicate GmbH.
2+
* Copyright (c) 2020, 2026 Lablicate GmbH.
33
*
44
* This program and the accompanying materials are made
55
* available under the terms of the Eclipse Public License 2.0
@@ -313,7 +313,6 @@ private Double calculateIntersectionX(IChromatogramPeak currentPeak, IChromatogr
313313
try {
314314
return solver.solve(1000, h, min, max);
315315
} catch(TooManyEvaluationsException | NoBracketingException e) {
316-
logger.warn(e);
317316
return null;
318317
}
319318
}

0 commit comments

Comments
 (0)