Make project compilable after fixes about generic nullability

This commit is contained in:
Denis Zharkov
2015-08-07 14:24:56 +03:00
parent 5e09a0c2c9
commit 4a3fbcc16e
24 changed files with 52 additions and 52 deletions
+1 -1
View File
@@ -68,7 +68,7 @@ abstract class AbstractValueBase<V>(
}
override fun hashCode(): Int {
return value.hashCode() + 17 * asmType.hashCode()
return value!!.hashCode() + 17 * asmType.hashCode()
}
}