From 1932e87e0211f0eb28f4359eb0fb00c33087b246 Mon Sep 17 00:00:00 2001 From: 4shutosh <4shutoshsingh@gmail.com> Date: Tue, 28 Jun 2022 14:04:56 +0530 Subject: [PATCH] unnecessary comment removed --- .../src/main/java/org/kiwix/kiwixmobile/core/data/Repository.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/kiwix/kiwixmobile/core/data/Repository.kt b/core/src/main/java/org/kiwix/kiwixmobile/core/data/Repository.kt index a0fe1d649..a1e52be12 100644 --- a/core/src/main/java/org/kiwix/kiwixmobile/core/data/Repository.kt +++ b/core/src/main/java/org/kiwix/kiwixmobile/core/data/Repository.kt @@ -134,7 +134,7 @@ class Repository @Inject internal constructor( Completable.fromAction { notesDao.deleteNote(noteUniqueKey) } .subscribeOn(io) - // this does note removes notes from storage only the list : remove txt files as well? + // this removes notes from storage only: remove txt files as well? override fun clearNotes(): Completable = Completable.fromAction(notesDao::deleteAllNotes).subscribeOn(io) }