mirror of
https://github.com/geometer/FBReaderJ.git
synced 2025-10-04 10:19:33 +02:00
formatting cleanup
This commit is contained in:
parent
54152bd62a
commit
0b290e65d0
1 changed files with 4 additions and 4 deletions
|
@ -374,7 +374,7 @@ public final class SQLiteBooksDatabase extends BooksDatabase {
|
|||
do {
|
||||
list.add(new Author(cursor.getString(0), cursor.getString(1)));
|
||||
} while (cursor.moveToNext());
|
||||
cursor.close();
|
||||
cursor.close();
|
||||
return list;
|
||||
}
|
||||
|
||||
|
@ -388,7 +388,7 @@ public final class SQLiteBooksDatabase extends BooksDatabase {
|
|||
myCreateTagIdStatement = myDatabase.compileStatement(
|
||||
"INSERT OR IGNORE INTO Tags (parent_id,name) VALUES (?,?)"
|
||||
);
|
||||
}
|
||||
}
|
||||
{
|
||||
final Long id = myIdByTag.get(tag);
|
||||
if (id != null) {
|
||||
|
@ -466,7 +466,7 @@ public final class SQLiteBooksDatabase extends BooksDatabase {
|
|||
do {
|
||||
list.add(getTagById(cursor.getLong(0)));
|
||||
} while (cursor.moveToNext());
|
||||
cursor.close();
|
||||
cursor.close();
|
||||
return list;
|
||||
}
|
||||
|
||||
|
@ -518,7 +518,7 @@ public final class SQLiteBooksDatabase extends BooksDatabase {
|
|||
if (cursor.moveToNext()) {
|
||||
info = new SeriesInfo(cursor.getString(0), SeriesInfo.createIndex(cursor.getString(1)));
|
||||
}
|
||||
cursor.close();
|
||||
cursor.close();
|
||||
return info;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue