Merge commit 'refs/merge-requests/48' of gitorious.org:f-droid/fdroidclient

This commit is contained in:
Daniel Martí 2013-06-27 12:51:04 +02:00
commit 7605ec219f
2 changed files with 2 additions and 2 deletions

View File

@ -450,7 +450,7 @@ public class AppDetails extends ListActivity {
sb.append("\t• " + permission.getName() + '\n');
} catch (NameNotFoundException e) {
Log.d( "FDroid",
"Can't find permsission '" + permissionName + "'");
"Can't find permission '" + permissionName + "'");
}
}
tv.setText(sb.toString());

View File

@ -138,7 +138,7 @@ public class AppListManager {
}
// recentDate could really be calculated here, but this is just a hack so
// it doesn't need to be caluculated for every single app. The reason it
// it doesn't need to be calculated for every single app. The reason it
// isn't an instance variable is because the preferences may change, and
// we wouldn't know.
private boolean isInCategory(DB.App app, String category, Date recentDate) {