Code cleanup: data deprecations and some effective visibility stuff

This commit is contained in:
Mikhail Glukhikh
2015-10-16 17:15:45 +03:00
parent a501878d60
commit cae0388a57
7 changed files with 59 additions and 30 deletions
@@ -18,7 +18,12 @@ package org.jetbrains.kotlin.android.synthetic.res
import org.jetbrains.kotlin.android.synthetic.AndroidConst
public data class AndroidModuleInfo(val applicationPackage: String, resDirectories: List<String>) {
public class AndroidModuleInfo(val applicationPackage: String, resDirectories: List<String>) {
override fun equals(other: Any?) = other is AndroidModuleInfo && applicationPackage == other.applicationPackage
override fun hashCode() = applicationPackage.hashCode()
val resDirectories = resDirectories.sorted()
}