[im] Update DirectoryRosterStore TODO note regarding Android API 26.

This commit is contained in:
Florian Schmaus 2021-01-06 13:48:49 +01:00
parent 40aa9e87b7
commit 65d7c1c1b8
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ public final class DirectoryRosterStore implements RosterStore {
private static Item readEntry(File file) {
Reader reader;
try {
// TODO: Should use Files.newBufferedReader() but it is not available on Android.
// TODO: Use Files.newBufferedReader() once Smack's minimum Android API level is 26 or higher.
reader = new FileReader(file);
} catch (FileNotFoundException e) {
LOGGER.log(Level.FINE, "Roster entry file not found", e);