Minor. Specify type arguments explicitly

Otherwise strange compilation error appears (see KT-11323)
This commit is contained in:
Denis Zharkov
2016-03-07 19:45:19 +03:00
parent 151e55b2fa
commit 2e9075115b
@@ -50,7 +50,8 @@ abstract class KotlinFileIndexBase<T>(private val classOfIndex: Class<T>) : Scal
override fun getKeyDescriptor() = KEY_DESCRIPTOR
protected fun indexer(f: (FileContent) -> FqName?): DataIndexer<FqName, Void, FileContent> =
DataIndexer {
// See KT-11323
DataIndexer<FqName, Void, FileContent> {
try {
val fqName = f(it)
if (fqName != null) {