Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
starkda committed Mar 25, 2024
1 parent fe2b446 commit 969c63e
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/main/resources/org/jpeek/metrics/CCM.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -68,18 +68,18 @@ SOFTWARE.
</xsl:for-each>
</xsl:for-each>
</xsl:variable>
<xsl:variable name="graph">
<xsl:for-each select="$methods">
<xsl:variable name="method" select="."/>
<node id="{$method/@name}">
<xsl:for-each select="$edges/edge[method[1]/text() = $method/@name]">
<edge>
<xsl:value-of select="method[2]/text()"/>
</edge>
</xsl:for-each>
</node>
</xsl:for-each>
</xsl:variable>
<xsl:variable name="graph">
<xsl:for-each select="$methods">
<xsl:variable name="method" select="."/>
<node id="{$method/@name}">
<xsl:for-each select="$edges/edge[method[1]/text() = $method/@name]">
<edge>
<xsl:value-of select="method[2]/text()"/>
</edge>
</xsl:for-each>
</node>
</xsl:for-each>
</xsl:variable>
<xsl:variable name="result">
<xsl:for-each select="$graph/node">
<xsl:variable name="root" select="."/>
Expand Down

0 comments on commit 969c63e

Please sign in to comment.