Skip to content

Commit

Permalink
Merge pull request #467 from jsonschema2dataclass/fix-param-order
Browse files Browse the repository at this point in the history
Fix order of boolean parameters useTitleAsClassname and useJakartaValidation
  • Loading branch information
eirnym authored Oct 17, 2022
2 parents 5e81672 + 02093b5 commit 6770c53
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ internal data class Js2dConfig(
private val useLongIntegers: Boolean,
private val useOptionalForGetters: Boolean,
private val usePrimitives: Boolean,
private val useTitleAsClassname: Boolean,
private val useJakartaValidation: Boolean,
private val useTitleAsClassname: Boolean,
) : GenerationConfig, java.io.Serializable {
companion object {
private val defaultConfiguration = DefaultGenerationConfig()
Expand Down

0 comments on commit 6770c53

Please sign in to comment.