Skip to content

Commit 8c09ef9

Browse files
Nick PellyAndroid (Google) Code Review
authored andcommitted
Merge "Removed selectAid() from IsoDep." into gingerbread
2 parents 4b94dee + 912aa1c commit 8c09ef9

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

core/java/android/nfc/technology/IsoDep.java

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -64,19 +64,4 @@ public IsoDep(NfcAdapter adapter, Tag tag, Bundle extras)
6464
* 3B only
6565
*/
6666
public byte[] getAttrib() { return mAttrib; }
67-
68-
/**
69-
* Attempts to select the given application on the tag. Note that this only works
70-
* if the tag supports ISO7816-4, which not all IsoDep tags support. If the tag doesn't
71-
* support ISO7816-4 this will throw {@link UnsupportedOperationException}.
72-
*
73-
* This method requires that you call {@link #connect} before calling it.
74-
*
75-
* @throws IOException, UnsupportedOperationException
76-
*/
77-
public void selectAid(byte[] aid) throws IOException, UnsupportedOperationException {
78-
checkConnected();
79-
80-
throw new UnsupportedOperationException();
81-
}
8267
}

0 commit comments

Comments
 (0)