Warning fixed

This commit is contained in:
Mikhail Glukhikh
2015-05-21 18:33:21 +03:00
parent 4fb331ecd3
commit 9b50705a0e
@@ -72,8 +72,8 @@ public class TypeResolver(
val cachedType = c.trace.getBindingContext().get(BindingContext.TYPE, typeReference)
if (cachedType != null) return type(cachedType)
if (typeReference.debugTypeInfo != null) {
val debugType = typeReference.debugTypeInfo
val debugType = typeReference.debugTypeInfo
if (debugType != null) {
c.trace.record(BindingContext.TYPE, typeReference, debugType)
return type(debugType)
}