Skip to content

Commit

Permalink
#44 complete generic generator
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex009 committed May 4, 2020
1 parent fa381a2 commit 83e4231
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class MultiplatformResourcesPlugin : Plugin<Project> {
commonSourceSet: KotlinSourceSet,
generatedDir: File,
mrClassPackage: String,
features: List<ResourceGeneratorFeature>,
features: List<ResourceGeneratorFeature<out MRGenerator.Generator>>,
target: Project
) {
val commonGeneratorSourceSet: MRGenerator.SourceSet = createSourceSet(commonSourceSet)
Expand All @@ -121,7 +121,7 @@ class MultiplatformResourcesPlugin : Plugin<Project> {
androidMainSourceSet: AndroidSourceSet,
generatedDir: File,
mrClassPackage: String,
features: List<ResourceGeneratorFeature>,
features: List<ResourceGeneratorFeature<out MRGenerator.Generator>>,
target: Project
) {
val kotlinSourceSets: List<KotlinSourceSet> = targets
Expand All @@ -144,7 +144,7 @@ class MultiplatformResourcesPlugin : Plugin<Project> {
targets: List<KotlinTarget>,
generatedDir: File,
mrClassPackage: String,
features: List<ResourceGeneratorFeature>,
features: List<ResourceGeneratorFeature<out MRGenerator.Generator>>,
target: Project,
iosLocalizationRegion: String
) {
Expand Down

0 comments on commit 83e4231

Please sign in to comment.