зеркало из https://github.com/mozilla/pjs.git
fixed histogram sorting.
This commit is contained in:
Родитель
9e53c0ec6b
Коммит
b9374b0d98
|
@ -299,7 +299,7 @@ public class leaksoup {
|
|||
|
||||
public int compare(Object obj1, Object obj2) {
|
||||
Type t1 = (Type) obj1, t2 = (Type) obj2;
|
||||
return (hist.count(t2) * t1.mSize - hist.count(t2) * t2.mSize);
|
||||
return (hist.count(t1) * t1.mSize - hist.count(t2) * t2.mSize);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче