Skip to content

Commit

Permalink
Fix compile error
Browse files Browse the repository at this point in the history
So much for safe refactoring. :/
  • Loading branch information
nipa committed Jan 10, 2017
1 parent 94c4b41 commit bf119e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/org/codefx/gh/rere/GitHubResponses.kt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ private fun parseContentUrlsFromSearchResponse(searchResult: String): List<org.c
.parse(searchResult).asJsonObject
.get("items").asJsonArray
.map { it.asJsonObject }
.map(::(org.codefx.gh.rere.parseContentUrls))
.map(::parseContentUrls)
}

private fun parseContentUrls(project: JsonObject): ContentUrls {
Expand Down

0 comments on commit bf119e9

Please sign in to comment.