Make project compilable after fixes about generic nullability
This commit is contained in:
@@ -68,7 +68,7 @@ abstract class AbstractValueBase<V>(
|
||||
}
|
||||
|
||||
override fun hashCode(): Int {
|
||||
return value.hashCode() + 17 * asmType.hashCode()
|
||||
return value!!.hashCode() + 17 * asmType.hashCode()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user