chb0kotlin
06/20/2017, 8:10 PMtulio
06/20/2017, 8:25 PMdamian
06/20/2017, 8:35 PMchb0kotlin
06/20/2017, 8:57 PMpublic DeDup(Set<File> roots, String hashAlgo, Set<String> fileTypes) {
this.roots = roots;
this.hashAlgo = hashAlgo;
this.fileTypes = fileTypes;
}
xenomachina
06/20/2017, 9:38 PMclass Args(parser: ArgParser) {
val root by parser.adding("directories to search")
val algo by parser.storing("hash algorithm")
val fileTypes by parser.adding("file types to process",
initialValue = mutableSetOf<String>()) { this }
}
cedric
06/21/2017, 2:03 AMtulio
06/21/2017, 7:09 PMchb0kotlin
06/21/2017, 8:49 PMtulio
06/22/2017, 12:07 AMchb0kotlin
06/22/2017, 1:25 AMcedric
06/22/2017, 1:26 AMtulio
06/22/2017, 2:12 AMchb0kotlin
06/22/2017, 4:01 PM