Skip to content

Commit

Permalink
fix: Remove deprecated XML attributes
Browse files Browse the repository at this point in the history
Remove "pass" attribute from "method" elements - these are not used.
  • Loading branch information
abensonca committed Jul 29, 2021
1 parent eb4a041 commit d8942c5
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 33 deletions.
14 changes: 7 additions & 7 deletions source/nodes.property_extractor.array.F90
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@
contains
!![
<methods>
<method description="Return a description of the columns." method="columnDescriptions" pass="yes"/>
<method description="Return the number of elements in the array." method="size" pass="yes"/>
<method description="Return the number of properties in the array." method="elementCount" pass="yes"/>
<method description="Extract the properties from the given {\normalfont \ttfamily node}." method="extract" pass="yes"/>
<method description="Return the name of the properties extracted." method="names" pass="yes"/>
<method description="Return a description of the properties extracted." method="descriptions" pass="yes"/>
<method description="Return the units of the properties extracted in the SI system." method="unitsInSI" pass="yes"/>
<method method="columnDescriptions" description="Return a description of the columns." />
<method method="size" description="Return the number of elements in the array." />
<method method="elementCount" description="Return the number of properties in the array." />
<method method="extract" description="Extract the properties from the given {\normalfont \ttfamily node}."/>
<method method="names" description="Return the name of the properties extracted." />
<method method="descriptions" description="Return a description of the properties extracted." />
<method method="unitsInSI" description="Return the units of the properties extracted in the SI system." />
</methods>
!!]
procedure(arrayNames ), deferred :: columnDescriptions
Expand Down
8 changes: 4 additions & 4 deletions source/nodes.property_extractor.integer_scalar.F90
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
contains
!![
<methods>
<method description="Extract the property from the given {\normalfont \ttfamily node}." method="extract" pass="yes" />
<method description="Return the name of the property extracted." method="name" pass="yes" />
<method description="Return a description of the property extracted." method="description" pass="yes" />
<method description="Return the units of the property extracted in the SI system." method="unitsInSI" pass="yes" />
<method method="extract" description="Extract the property from the given {\normalfont \ttfamily node}."/>
<method method="name" description="Return the name of the property extracted." />
<method method="description" description="Return a description of the property extracted." />
<method method="unitsInSI" description="Return the units of the property extracted in the SI system." />
</methods>
!!]
procedure(integerScalarExtract), deferred :: extract
Expand Down
10 changes: 5 additions & 5 deletions source/nodes.property_extractor.integer_tuple.F90
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@
contains
!![
<methods>
<method description="Return the number of properties in the tuple." method="elementCount" pass="yes" />
<method description="Extract the properties from the given {\normalfont \ttfamily node}." method="extract" pass="yes" />
<method description="Return the names of the properties extracted." method="names" pass="yes" />
<method description="Return descriptions of the properties extracted." method="descriptions" pass="yes" />
<method description="Return the units of the properties extracted in the SI system." method="unitsInSI" pass="yes" />
<method method="elementCount" description="Return the number of properties in the tuple." />
<method method="extract" description="Extract the properties from the given {\normalfont \ttfamily node}."/>
<method method="names" description="Return the names of the properties extracted." />
<method method="descriptions" description="Return descriptions of the properties extracted." />
<method method="unitsInSI" description="Return the units of the properties extracted in the SI system." />
</methods>
!!]
procedure(integerTupleElementCount), deferred :: elementCount
Expand Down
16 changes: 8 additions & 8 deletions source/nodes.property_extractor.multi.F90
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@
contains
!![
<methods>
<method description="Return a description of the columns." method="columnDescriptions" pass="yes"/>
<method description="Return the number of properties in the tuple." method="elementCount" pass="yes"/>
<method description="Extract the double properties from the given {\normalfont \ttfamily node}." method="extractDouble" pass="yes"/>
<method description="Extract the integer properties from the given {\normalfont \ttfamily node}." method="extractInteger" pass="yes"/>
<method description="Return the names of the properties extracted." method="names" pass="yes"/>
<method description="Return descriptions of the properties extracted." method="descriptions" pass="yes"/>
<method description="Return the units of the properties extracted in the SI system." method="unitsInSI" pass="yes"/>
<method description="Return the ranks of the properties extracted." method="ranks" pass="yes"/>
<method description="Return a description of the columns." method="columnDescriptions"/>
<method description="Return the number of properties in the tuple." method="elementCount" />
<method description="Extract the double properties from the given {\normalfont \ttfamily node}." method="extractDouble" />
<method description="Extract the integer properties from the given {\normalfont \ttfamily node}." method="extractInteger" />
<method description="Return the names of the properties extracted." method="names" />
<method description="Return descriptions of the properties extracted." method="descriptions" />
<method description="Return the units of the properties extracted in the SI system." method="unitsInSI" />
<method description="Return the ranks of the properties extracted." method="ranks" />
</methods>
!!]
final :: multiDestructor
Expand Down
8 changes: 4 additions & 4 deletions source/nodes.property_extractor.scalar.F90
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
contains
!![
<methods>
<method description="Extract the property from the given {\normalfont \ttfamily node}." method="extract" pass="yes"/>
<method description="Return the name of the property extracted." method="name" pass="yes"/>
<method description="Return a description of the property extracted." method="description" pass="yes"/>
<method description="Return the units of the property extracted in the SI system." method="unitsInSI" pass="yes"/>
<method method="extract" description="Extract the property from the given {\normalfont \ttfamily node}."/>
<method method="name" description="Return the name of the property extracted." />
<method method="description" description="Return a description of the property extracted." />
<method method="unitsInSI" description="Return the units of the property extracted in the SI system." />
</methods>
!!]
procedure(scalarExtract ), deferred :: extract
Expand Down
10 changes: 5 additions & 5 deletions source/nodes.property_extractor.tuple.F90
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@
contains
!![
<methods>
<method description="Return the number of properties in the tuple." method="elementCount" pass="yes" />
<method description="Extract the properties from the given {\normalfont \ttfamily node}." method="extract" pass="yes" />
<method description="Return the names of the properties extracted." method="names" pass="yes" />
<method description="Return descriptions of the properties extracted." method="descriptions" pass="yes" />
<method description="Return the units of the properties extracted in the SI system." method="unitsInSI" pass="yes" />
<method method="elementCount" description="Return the number of properties in the tuple." />
<method method="extract" description="Extract the properties from the given {\normalfont \ttfamily node}."/>
<method method="names" description="Return the names of the properties extracted." />
<method method="descriptions" description="Return descriptions of the properties extracted." />
<method method="unitsInSI" description="Return the units of the properties extracted in the SI system." />
</methods>
!!]
procedure(tupleElementCount), deferred :: elementCount
Expand Down

0 comments on commit d8942c5

Please sign in to comment.