am 0dda405c: am e96bc57a: Merge change I7d761ffa into eclair

Merge commit '0dda405c6ec7ae2040f884ec71ad89bbc8ce7110'

* commit '0dda405c6ec7ae2040f884ec71ad89bbc8ce7110':
  Fix best match resource selection when there's only one match.
This commit is contained in:
Xavier Ducrohet
2009-10-12 11:30:14 -07:00
committed by Android Git Automerger

View File

@@ -604,7 +604,7 @@ public class ProjectResources implements IResourceRepository {
if (matchingResources.size() == 0) { if (matchingResources.size() == 0) {
return null; return null;
} }
return matchingResources.get(1); return matchingResources.get(0);
} }
/** /**