Oops, fix compiler warning

This commit is contained in:
Henrik Tunedal 2011-03-08 00:06:34 +01:00
parent 06253a94cf
commit 87ca5ce189

View File

@ -220,11 +220,11 @@ public class DB {
private static class EclairChecker extends CompatibilityChecker {
private HashSet features;
private HashSet<String> features;
public EclairChecker(Context ctx) {
PackageManager pm = ctx.getPackageManager();
features = new HashSet();
features = new HashSet<String>();
for (FeatureInfo fi : pm.getSystemAvailableFeatures()) {
features.add(fi.name);
}