diff options
-rw-r--r-- | core/java/android/nfc/technology/Ndef.java | 1 | ||||
-rw-r--r-- | core/java/android/nfc/technology/NdefFormatable.java | 10 |
2 files changed, 1 insertions, 10 deletions
diff --git a/core/java/android/nfc/technology/Ndef.java b/core/java/android/nfc/technology/Ndef.java index cd12249..53db0c5 100644 --- a/core/java/android/nfc/technology/Ndef.java +++ b/core/java/android/nfc/technology/Ndef.java @@ -140,6 +140,7 @@ public final class Ndef extends BasicTagTechnology { return null; } } + /** * Overwrite the primary NDEF message * @throws IOException diff --git a/core/java/android/nfc/technology/NdefFormatable.java b/core/java/android/nfc/technology/NdefFormatable.java index 899b95f..222c558 100644 --- a/core/java/android/nfc/technology/NdefFormatable.java +++ b/core/java/android/nfc/technology/NdefFormatable.java @@ -45,16 +45,6 @@ public final class NdefFormatable extends BasicTagTechnology { } /** - * Returns whether a tag can be formatted with {@link - * NdefFormatable#format(NdefMessage)} - */ - public boolean canBeFormatted() throws IOException { - checkConnected(); - - throw new UnsupportedOperationException(); - } - - /** * Formats a tag as NDEF, if possible. You may supply a first * NdefMessage to be written on the tag. */ |