Skip to content
Snippets Groups Projects
Commit 64350400 authored by Katy Saintin's avatar Katy Saintin
Browse files

Bug in Relative mode + Threshold mode is now compared with <= and >= Mantis 22956

parent d9674102
Branches
Tags
No related merge requests found
......@@ -288,8 +288,8 @@ public abstract class ModeHandler {
* "previous value :" + previousEvent);
*/
if (currentEvent < mode.getModeT().getThresholdInf()
|| currentEvent > mode.getModeT().getThresholdSup()) {
if (currentEvent <= mode.getModeT().getThresholdInf()
|| currentEvent >= mode.getModeT().getThresholdSup()) {
// System.out.println ("TRUE");
return true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment