Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 30ce5f85 authored by Nick Pelly's avatar Nick Pelly Committed by Android Git Automerger
Browse files

am 8c09ef91: Merge "Removed selectAid() from IsoDep." into gingerbread

* commit '8c09ef91':
  Removed selectAid() from IsoDep.
parents 7e4d74f7 8c09ef91
Loading
Loading
Loading
Loading
+0 −15
Original line number Original line Diff line number Diff line
@@ -64,19 +64,4 @@ public final class IsoDep extends BasicTagTechnology {
     * 3B only
     * 3B only
     */
     */
    public byte[] getAttrib() { return mAttrib; }
    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();
    }
}
}