1
0
mirror of https://github.com/etesync/android synced 2025-03-15 23:16:06 +00:00

Import: Rename poorly named class.

This commit is contained in:
Tom Hacohen 2019-03-10 16:16:42 +00:00
parent c4ee03b733
commit 77d89f3b4b

View File

@ -148,7 +148,7 @@ class ImportFragment : DialogFragment() {
try {
inputStream = activity!!.contentResolver.openInputStream(uri)
Thread(ImportCalendarsLoader()).start()
Thread(ImportEntriesLoader()).start()
} catch (e: Exception) {
App.log.severe("File select error: ${e.message}")
@ -179,7 +179,7 @@ class ImportFragment : DialogFragment() {
}
}
private inner class ImportCalendarsLoader : Runnable {
private inner class ImportEntriesLoader : Runnable {
private fun finishParsingFile(length: Int) {
if (activity == null) {
return