Add TODO for history

This commit is contained in:
J-Jamet
2019-09-10 16:26:17 +02:00
parent 4b1806900b
commit 5f0e899679

View File

@@ -268,6 +268,7 @@ abstract class PwDatabase<Group : PwGroup<*, Group, Entry>, Entry : PwEntry<Grou
fun addEntryIndex(entry: Entry) { fun addEntryIndex(entry: Entry) {
val entryId = entry.nodeId val entryId = entry.nodeId
if (entryIndexes.containsKey(entryId)) { if (entryIndexes.containsKey(entryId)) {
// TODO History
Log.e(TAG, "Error, a group with the same UUID $entryId already exists, change the UUID") Log.e(TAG, "Error, a group with the same UUID $entryId already exists, change the UUID")
} else { } else {
this.entryIndexes[entryId] = entry this.entryIndexes[entryId] = entry