summaryrefslogtreecommitdiff
path: root/core/java/android
diff options
context:
space:
mode:
authorNick Pelly <npelly@google.com>2011-01-03 20:11:08 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2011-01-03 20:11:08 -0800
commit30ce5f8567df2132736486bb93a60f49582508ec (patch)
treed1be4f6b5bc5cf5e128546abd003bf2ccfd001dd /core/java/android
parent7e4d74f7b9355e8abd6e2fa30e284c9116a08998 (diff)
parent8c09ef91aef0706a012e449ba3d16c03e0d64508 (diff)
am 8c09ef91: Merge "Removed selectAid() from IsoDep." into gingerbread
* commit '8c09ef91aef0706a012e449ba3d16c03e0d64508': Removed selectAid() from IsoDep.
Diffstat (limited to 'core/java/android')
-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();
- }
}