Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove Increase/Decrease
They were deprecated for over a year now.
  • Loading branch information
lizmat committed Nov 21, 2014
1 parent 5850d0a commit b059a8a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/core/Order.pm
@@ -1,9 +1,6 @@
## Order enumeration, for cmp and <=>
my enum Order (:Less(-1), :Same(0), :More(1));

only Increase () { DEPRECATED("Less", |<2013.11 2014.11>); Less }
only Decrease (){ DEPRECATED("More", |<2013.11 2014.11>); More }

sub ORDER(int $i) {
$i == 0 ?? Same !! $i < 0 ?? Less !! More
}
Expand Down

0 comments on commit b059a8a

Please sign in to comment.