Merge "RRO: idmap: fix sorting of overlays.list"

This commit is contained in:
Adam Lesinski
2015-10-12 19:29:39 +00:00
committed by Gerrit Code Review

View File

@@ -25,8 +25,7 @@ namespace {
bool operator<(Overlay const& rhs) const
{
// Note: order is reversed by design
return rhs.priority < priority;
return rhs.priority > priority;
}
String8 apk_path;