Skip to content

Commit

Permalink
cleaned up a comment to satisfy style checker. #3648
Browse files Browse the repository at this point in the history
  • Loading branch information
landreev committed Apr 19, 2023
1 parent 74497e5 commit 4717311
Showing 1 changed file with 23 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -626,28 +626,29 @@ private static void writeDateElement(XMLStreamWriter xmlw, String element, Strin

}

/** Again, <dataColl> is an xs:sequence - order is important and must follow
* the schema. -L.A.
* <xs:sequence>
<xs:element ref="timeMeth" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="dataCollector" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="collectorTraining" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="frequenc" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="sampProc" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="sampleFrame" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="targetSampleSize" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="deviat" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="collMode" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="resInstru" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="instrumentDevelopment" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="sources" minOccurs="0"/>
<xs:element ref="collSitu" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="actMin" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="ConOps" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="weight" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="cleanOps" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
*/
/**
* Again, <dataColl> is an xs:sequence - order is important and must follow
* the schema. -L.A.
* <xs:sequence>
* <xs:element ref="timeMeth" minOccurs="0" maxOccurs="unbounded"/>
* <xs:element ref="dataCollector" minOccurs="0" maxOccurs="unbounded"/>
* <xs:element ref="collectorTraining" minOccurs="0" maxOccurs="unbounded"/>
* <xs:element ref="frequenc" minOccurs="0" maxOccurs="unbounded"/>
* <xs:element ref="sampProc" minOccurs="0" maxOccurs="unbounded"/>
* <xs:element ref="sampleFrame" minOccurs="0" maxOccurs="unbounded"/>
* <xs:element ref="targetSampleSize" minOccurs="0" maxOccurs="unbounded"/>
* <xs:element ref="deviat" minOccurs="0" maxOccurs="unbounded"/>
* <xs:element ref="collMode" minOccurs="0" maxOccurs="unbounded"/>
* <xs:element ref="resInstru" minOccurs="0" maxOccurs="unbounded"/>
* <xs:element ref="instrumentDevelopment" minOccurs="0" maxOccurs="unbounded"/>
* <xs:element ref="sources" minOccurs="0"/>
* <xs:element ref="collSitu" minOccurs="0" maxOccurs="unbounded"/>
* <xs:element ref="actMin" minOccurs="0" maxOccurs="unbounded"/>
* <xs:element ref="ConOps" minOccurs="0" maxOccurs="unbounded"/>
* <xs:element ref="weight" minOccurs="0" maxOccurs="unbounded"/>
* <xs:element ref="cleanOps" minOccurs="0" maxOccurs="unbounded"/>
* </xs:sequence>
*/
private static void writeMethodElement(XMLStreamWriter xmlw , DatasetVersionDTO version, String lang) throws XMLStreamException{
xmlw.writeStartElement("method");
xmlw.writeStartElement("dataColl");
Expand Down

0 comments on commit 4717311

Please sign in to comment.