Fix for AST-273 - rtm priority was being set incorrectly

pull/14/head
Tim Su 16 years ago
parent 120613d067
commit 98b5e0d5f8

@ -59,7 +59,7 @@ public class RtmTask
High, Medium, Low, None;
public static Priority values(Integer value) {
value = Math.max(values().length - 1, value);
value = Math.min(values().length - 1, value);
return values()[value];
}
}

Loading…
Cancel
Save