Cleanup: apply RemoveRedundantQualifierNameInspection to idea

This commit is contained in:
Dmitry Gridin
2019-06-20 19:31:23 +07:00
parent f1e2ba728f
commit 8c84f885ac
57 changed files with 227 additions and 244 deletions
@@ -37,7 +37,7 @@ class CommandHistory {
listeners.forEach { it.onNewEntry(entry) }
}
fun lastUnprocessedEntry(): CommandHistory.Entry? {
fun lastUnprocessedEntry(): Entry? {
return if (processedEntriesCount < size) {
get(processedEntriesCount)
}