summaryrefslogtreecommitdiffstats
path: root/core/java
diff options
context:
space:
mode:
authorNick Pelly <npelly@google.com>2011-01-03 20:13:17 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2011-01-03 20:13:17 -0800
commitb300ae40fce7644e760e27352f83cd41b27fbf76 (patch)
tree6dc9c4afa49c6a50c1a9f3aa4d04d4d7b9c88d36 /core/java
parent198ec52eb7535db964764812b42241c3a657b10f (diff)
parent30ce5f8567df2132736486bb93a60f49582508ec (diff)
downloadframeworks_base-b300ae40fce7644e760e27352f83cd41b27fbf76.zip
frameworks_base-b300ae40fce7644e760e27352f83cd41b27fbf76.tar.gz
frameworks_base-b300ae40fce7644e760e27352f83cd41b27fbf76.tar.bz2
am 30ce5f85: am 8c09ef91: Merge "Removed selectAid() from IsoDep." into gingerbread
* commit '30ce5f8567df2132736486bb93a60f49582508ec': Removed selectAid() from IsoDep.
Diffstat (limited to 'core/java')
-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 118bff7..52a453f 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();
- }
}