am 6d1b1735: am 616273b6: am 0268b22d: am 415ef692: Merge "Fix static AID prefix registration." into lmp-dev

* commit '6d1b17352ede80eb46f2c79afd267d5d6460f0d4':
  Fix static AID prefix registration.
This commit is contained in:
Martijn Coenen
2014-09-17 05:14:32 +00:00
committed by Android Git Automerger

View File

@@ -231,7 +231,7 @@ public final class ApduServiceInfo implements Parcelable {
String aid = a.getString(com.android.internal.R.styleable.AidFilter_name).
toUpperCase();
// Add wildcard char to indicate prefix
aid.concat("*");
aid = aid.concat("*");
if (CardEmulation.isValidAid(aid) && !currentGroup.aids.contains(aid)) {
currentGroup.aids.add(aid);
} else {