Skip to content

Commit 57020b3

Browse files
committed
xsd-parser-version 1.2.7
xmlet/XsdParser#57
1 parent 13f4ca7 commit 57020b3

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Changed
11+
12+
- [xsd-parser-version 1.2.7](https://github.com/xmlet/XsdParser/issues/57)
13+
1014
### Fixed
1115

1216
- [playground-quarkus] doc conversion shortcut for xml, json and yaml

fj-doc-lib-autodoc/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</licenses>
2323

2424
<properties>
25-
<xsd-parser-version>1.2.6</xsd-parser-version>
25+
<xsd-parser-version>1.2.7</xsd-parser-version>
2626
<autodoc-detail-package-name>org.fugerit.java.doc.lib.autodoc.detail.model</autodoc-detail-package-name>
2727
<autodoc-meta-package-name>org.fugerit.java.doc.lib.autodoc.meta.model</autodoc-meta-package-name>
2828
<ad-output-dir>${project.build.directory}/generated-sources/jaxb-ad</ad-output-dir>

fj-doc-lib-autodoc/src/main/java/org/fugerit/java/doc/lib/autodoc/parser/model/AutodocAttribute.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ private void handleMinMaxExclusiveRestrictions( StringBuilder builder, XsdRestri
9191
}
9292

9393
private void handlePatternRestriction( StringBuilder builder, XsdRestriction xsdRestriction ) {
94-
List<XsdPattern> patterns = xsdRestriction.getPattern();
94+
List<XsdPattern> patterns = xsdRestriction.getPatterns();
9595
if ( patterns != null && !patterns.isEmpty() ) {
9696
builder.append( " , pattern : " );
9797
builder.append( StringUtils.concat( ", ", patterns.stream().map( xp -> xp.getValue() ).collect( Collectors.toList() ) ) );

0 commit comments

Comments
 (0)