瀏覽代碼

Ran Spotless

Aidan Follestad 6 年之前
父節點
當前提交
c6846da0d6

+ 0 - 1
files/src/main/java/com/afollestad/materialdialogs/files/FileChooserAdapter.kt

@@ -130,7 +130,6 @@ internal class FileChooserAdapter(
             .filter { filter?.invoke(it) ?: true }
             .sortedWith(compareBy({ !it.isDirectory }, { it.nameWithoutExtension.toLowerCase() }))
       }
-
     }.after {
       this.contents = it
       this.emptyView.setVisible(it.isEmpty())

+ 6 - 1
files/src/main/java/com/afollestad/materialdialogs/files/Job.kt

@@ -1,3 +1,8 @@
+/*
+ * Licensed under Apache-2.0
+ *
+ * Designed and developed by Aidan Follestad (@afollestad)
+ */
 package com.afollestad.materialdialogs.files
 
 import android.os.Handler
@@ -38,4 +43,4 @@ internal class Job<T>(private val execution: Execution<T>) {
 
 internal fun <T> job(execution: Execution<T>): Job<T> {
   return Job(execution)
-}
+}