Skip to content

Commit 912aa1c

Browse files
Martijn CoenenNick Pelly
authored andcommitted
Removed selectAid() from IsoDep.
It's a convenience method that can be implemented with transceive(); not really needed for now. Change-Id: Idd855c85b15d97ae679d11d908834be3cb2741d8
1 parent 672ebb6 commit 912aa1c

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)