]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Removing a compilation warning
authorbelikov <belikov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 4 Apr 2007 15:08:23 +0000 (15:08 +0000)
committerbelikov <belikov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 4 Apr 2007 15:08:23 +0000 (15:08 +0000)
STEER/AliTrackReference.h

index 85d821b161904b6f7d9610c9a72a3818ee13198c..83f32b8d4bc2dd57915603716f11b9dc67d9527f 100644 (file)
@@ -61,9 +61,9 @@ public:
   Bool_t IsSortable() const {return kTRUE;}
   Int_t Compare(const TObject *obj) const {
     Int_t ll = ((AliTrackReference*)obj)->GetTrack();
   Bool_t IsSortable() const {return kTRUE;}
   Int_t Compare(const TObject *obj) const {
     Int_t ll = ((AliTrackReference*)obj)->GetTrack();
-    if (ll == fTrack) return 0;
     if (ll < fTrack) return 1;
     if (ll > fTrack) return -1;
     if (ll < fTrack) return 1;
     if (ll > fTrack) return -1;
+    return 0;
   }
 
 protected:
   }
 
 protected: