Modified:
/src/org/ductilej/runtime/RT.java
=======================================
--- /src/org/ductilej/runtime/RT.java Sat Jul 10 11:36:48 2010
+++ /src/org/ductilej/runtime/RT.java Sat Jul 10 11:38:58 2010
@@ -1250,7 +1250,7 @@
}
public Match lesser (Match other) {
- return ordinal() < other.ordinal() ? this : other;
+ return isCloser(other) ? other : this;
}
};