Log Message:
-----------
No longer need to change the order of the data, since
Value::Interval->make() now handles the alternative order.
Modified Files:
--------------
pg/macros:
contextInequalities.pl
Revision Data
-------------
Index: contextInequalities.pl
===================================================================
RCS file: /webwork/cvs/system/pg/macros/contextInequalities.pl,v
retrieving revision 1.10
retrieving revision 1.11
diff -Lmacros/contextInequalities.pl -Lmacros/contextInequalities.pl -u -r1.10 -r1.11
--- macros/contextInequalities.pl
+++ macros/contextInequalities.pl
@@ -516,11 +516,6 @@
sub type {"Interval"}
-sub makeData {
- my ($a,$b,$open,$close) = (shift)->value;
- return ($open,$a,$b,$close);
-}
-
sub string {
my $self = shift;
my ($a,$b,$open,$close) = $self->value;
|