File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Src/Transforms/Application Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -6917,13 +6917,15 @@ ProcessSlotNames
69176917 <xsl : choose >
69186918 <xsl : when test =" $bVernRightToLeft='1'" >
69196919 <xsl : for-each select =" $Slots" >
6920- <xsl : sort select =" @ord" order =" descending" />
6920+ <!-- no need to sort; the input to this transform has them in order
6921+ <xsl:sort select="@ord" order="descending"/>-->
69216922 <xsl : call-template name =" ProcessSlotName" />
69226923 </xsl : for-each >
69236924 </xsl : when >
69246925 <xsl : otherwise >
69256926 <xsl : for-each select =" $Slots" >
6926- <xsl : sort select =" @ord" />
6927+ <!-- no need to sort; the input to this transform has them in order
6928+ <xsl:sort select="@ord" order="descending"/>-->
69276929 <xsl : call-template name =" ProcessSlotName" />
69286930 </xsl : for-each >
69296931 </xsl : otherwise >
You can’t perform that action at this time.
0 commit comments