Skip to content
Snippets Groups Projects
Commit 2af04154 authored by Tor-Einar Skog's avatar Tor-Einar Skog
Browse files

Correct trapsite status thresholds

parent 22c0d1c0
Branches
Tags
No related merge requests found
...@@ -439,11 +439,11 @@ public class SeasonTrapsite implements Serializable, Comparable { ...@@ -439,11 +439,11 @@ public class SeasonTrapsite implements Serializable, Comparable {
// Thresholds for warning status // Thresholds for warning status
@Transient @Transient
private final Integer THRESHOLD_LOW_RISK = 1000; private final Integer THRESHOLD_LOW_RISK = 5000;
@Transient @Transient
private final Integer THRESHOLD_MEDIUM_RISK = 5000; private final Integer THRESHOLD_MEDIUM_RISK = 10000;
@Transient @Transient
private final Integer THRESHOLD_HIGH_RISK = 10000; private final Integer THRESHOLD_HIGH_RISK = 15000;
@Transient @Transient
public Integer getWarningStatus(){ public Integer getWarningStatus(){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment