fix: typo
This commit is contained in:
parent
1e3babfccb
commit
051dcc1af9
1 changed files with 1 additions and 1 deletions
|
@ -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> {
|
||||||
|
|
Reference in a new issue