Changeset 9935 for trunk/Mars/mfbase
- Timestamp:
- 09/22/10 09:15:27 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mfbase/MF.cc
r8171 r9935 530 530 const Int_t fg = rule.First('>'); 531 531 const Int_t fl = rule.First('<'); 532 533 if (fg<0 && fl<0) 532 const Int_t fe = rule.First('='); 533 534 if (fg<0 && fl<0 && fe<0) 534 535 { 535 536 MFilter *f = (MFilter*)GetNewObject(rule, MFilter::Class()); … … 567 568 } 568 569 569 if (fF->ReadEnv(env, prefix, print)==kERROR)570 return kERROR;571 572 570 // This is a workaround, because MFilter::ReadEnv and fF->ReadEnv 573 571 // might check for "Inverted" in this case both gets inverted … … 578 576 SetInverted(kFALSE);*/ 579 577 580 return kTRUE;581 } 578 return fF->ReadEnv(env, prefix, print); 579 }
Note:
See TracChangeset
for help on using the changeset viewer.