summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Nick Pelly <npelly@google.com> 2011-01-03 20:09:03 -0800
committer Android (Google) Code Review <android-gerrit@google.com> 2011-01-03 20:09:03 -0800
commit8c09ef91aef0706a012e449ba3d16c03e0d64508 (patch)
tree63cccfed15ec6ee51e781963b0d256c63fe24322
parent4b94dee8336a1135e4fc67a5911223bb5aabad99 (diff)
parent912aa1cd70a7a7dcc54eb377b7bcdb7060c3f23a (diff)
Merge "Removed selectAid() from IsoDep." into gingerbread
-rw-r--r--core/java/android/nfc/technology/IsoDep.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/core/java/android/nfc/technology/IsoDep.java b/core/java/android/nfc/technology/IsoDep.java
index 118bff7a2360..52a453fae937 100644
--- a/core/java/android/nfc/technology/IsoDep.java
+++ b/core/java/android/nfc/technology/IsoDep.java
@@ -64,19 +64,4 @@ public final class IsoDep extends BasicTagTechnology {
* 3B only
*/
public byte[] getAttrib() { return mAttrib; }
-
- /**
- * Attempts to select the given application on the tag. Note that this only works
- * if the tag supports ISO7816-4, which not all IsoDep tags support. If the tag doesn't
- * support ISO7816-4 this will throw {@link UnsupportedOperationException}.
- *
- * This method requires that you call {@link #connect} before calling it.
- *
- * @throws IOException, UnsupportedOperationException
- */
- public void selectAid(byte[] aid) throws IOException, UnsupportedOperationException {
- checkConnected();
-
- throw new UnsupportedOperationException();
- }
}