Skip to content

Commit

Permalink
Remove use of concat
Browse files Browse the repository at this point in the history
concat take 2+ args,
only @path is needed to sort enclaves

Signed-off-by: ruffsl <[email protected]>
  • Loading branch information
ruffsl committed May 1, 2020
1 parent bc7a5ad commit 7baa7aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sros2/sros2/policy/templates/policy.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<!-- by namespace -->
<xsl:sort select="concat(@ns, @node)"/>
<!-- by path -->
<xsl:sort select="concat(@path)"/>
<xsl:sort select="@path"/>
</xsl:apply-templates>
</xsl:copy>
</xsl:template>
Expand Down

0 comments on commit 7baa7aa

Please sign in to comment.