Fix: Metric sorting comparators.

There was an oversight that resulted in indefinite recursion.
This commit is contained in:
Matt T. Proud 2013-06-22 13:26:37 +02:00
parent 024b00bcef
commit 6b26678f98
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ func (m Metric) Before(o Metric) bool {
lFingerprint.LoadFromMetric(m)
rFingerprint.LoadFromMetric(o)
return m.Before(o)
return lFingerprint.Less(rFingerprint)
}
func (m Metric) String() string {