sudo-update commented on a change in pull request #274:
URL: https://github.com/apache/incubator-tuweni/pull/274#discussion_r648017710
##########
File path:
eth-repository/src/main/kotlin/org/apache/tuweni/eth/repository/BlockchainIndex.kt
##########
@@ -483,10 +483,8 @@ class BlockchainIndex(private val indexWriter:
IndexWriter) : BlockchainIndexWri
val topDocs = searcher!!.search(query, HITS)
val docs = mutableListOf<Document>()
- for (hit in topDocs.scoreDocs) {
- val doc = searcher.doc(hit.doc, setOf("_id") + fields)
- docs += doc
- }
+ val doc = searcher.doc(topDocs.scoreDocs.elementAt(0).doc, setOf("_id")
+ fields)
+ docs += doc
Review comment:
When I make the above change, I get this error:
Task :eth-repository:compileKotlin FAILED
e:
/home/gradle/eth-repository/src/main/kotlin/org/apache/tuweni/eth/repository/BlockchainIndex.kt:
(485, 14): Type mismatch: inferred type is Document! but List<Document> was
expected
FAILURE: Build failed with an exception.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]