Skip to content

Commit

Permalink
Merge pull request #625 from scr/patch-1
Browse files Browse the repository at this point in the history
Issue #624: Default value of propertyWordDelimiters is empty in gradle vs "- _" for maven
  • Loading branch information
joelittlejohn authored Sep 24, 2016
2 parents 0c5f7f6 + 3c6dd6c commit d74cac2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class JsonSchemaExtension implements GenerationConfig {
usePrimitives = false
sourceFiles = []
targetPackage = ''
propertyWordDelimiters = [] as char[]
propertyWordDelimiters = ['-', ' ', '_'] as char[]
useLongIntegers = false
useBigIntegers = false
useDoubleNumbers = true
Expand Down

0 comments on commit d74cac2

Please sign in to comment.