fix: typo

This commit is contained in:
aro 2022-11-17 11:29:31 +01:00
parent 1e3babfccb
commit 051dcc1af9

View file

@ -9,7 +9,7 @@ class WatcherManager {
fun addFile(file: File) { fun addFile(file: File) {
val watcherEntry = WatcherEntry(file, arrayListOf()) val watcherEntry = WatcherEntry(file, arrayListOf())
entries.add(watcherEntry) entries.add(watcherEntry)
Logger.info("Traking new file: ${file.name} (${file.absolutePath})") Logger.info("Tracking new file: ${file.name} (${file.absolutePath})")
} }
fun getEntries(): ArrayList<WatcherEntry> { fun getEntries(): ArrayList<WatcherEntry> {