Skip to content
Snippets Groups Projects
Commit cd703b8a authored by Tor Norbye's avatar Tor Norbye
Browse files

Handle type mapping in signature files

This is a hot fix for the broken build.

Test: Build cf_x86_phone-userdebug
Change-Id: Id43930212cfa2ac0e7261ecae3f6298e7d141e8d
parent e59447d4
No related branches found
No related tags found
No related merge requests found
...@@ -254,6 +254,10 @@ open class TextClassItem( ...@@ -254,6 +254,10 @@ open class TextClassItem(
override fun qualifiedName(): String = qualifiedName override fun qualifiedName(): String = qualifiedName
override fun toString(): String = qualifiedName() override fun toString(): String = qualifiedName()
override fun mapTypeVariables(target: ClassItem): Map<String, String> {
return emptyMap()
}
companion object { companion object {
fun createClassStub(codebase: TextCodebase, name: String): TextClassItem = fun createClassStub(codebase: TextCodebase, name: String): TextClassItem =
createStub(codebase, name, isInterface = false) createStub(codebase, name, isInterface = false)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment