File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
src/main/java/org/apache/ibatis/builder/xml Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ extends CDATA #IMPLIED
6161autoMapping (true|false) #IMPLIED
6262>
6363
64- <!ELEMENT constructor (idArg*, arg*)>
64+ <!ELEMENT constructor (( idArg| arg) *)>
6565
6666<!ELEMENT id EMPTY>
6767<!ATTLIST id
Original file line number Diff line number Diff line change 108108 </xs : element >
109109 <xs : element name =" constructor" >
110110 <xs : complexType >
111- <xs : sequence >
112- <xs : element minOccurs = " 0 " maxOccurs = " unbounded " ref =" idArg" />
113- <xs : element minOccurs = " 0 " maxOccurs = " unbounded " ref =" arg" />
114- </xs : sequence >
111+ <xs : choice minOccurs = " 0 " maxOccurs = " unbounded " >
112+ <xs : element ref =" idArg" />
113+ <xs : element ref =" arg" />
114+ </xs : choice >
115115 </xs : complexType >
116116 </xs : element >
117117 <xs : element name =" id" >
You can’t perform that action at this time.
0 commit comments