We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Follow up from #2924 (review)
Making nested adapter classes private doesn't quite work at the moment because ResponseFields "jump" class nesting:
ResponseFields
class Data_Adapter { companion object RESPONSE_FIELDS = arrayOf(ResponseField(fieldSets = listOf( // Cannot access 'HumanCharacterHero': it is private in 'Hero'` FieldSet("Human", Hero.HumanCharacterHero.RESPONSE_FIELDS) FieldSet(null, Hero.OtherCharacterHero.RESPONSE_FIELDS) )) private class Hero { private class HumanCharacterHero {...} private class OtherCharacterHero {...} } }
Generating the list of FieldSets in Hero up there would most likely fix this
Hero
The text was updated successfully, but these errors were encountered:
make nested adapter classes private. Fixes #2926
cb29178
make nested adapter classes private. Fixes #2926 (#3188)
f911f23
Successfully merging a pull request may close this issue.
Follow up from #2924 (review)
Making nested adapter classes private doesn't quite work at the moment because
ResponseFields
"jump" class nesting:Generating the list of FieldSets in
Hero
up there would most likely fix thisThe text was updated successfully, but these errors were encountered: