Skip to content

Commit

Permalink
[FIXED JENKINS-14365] Show a ChangeLogSet.Entry.revision as a <li> va…
Browse files Browse the repository at this point in the history
…lue only if it is in fact an Integer.
  • Loading branch information
jglick committed Jul 10, 2012
1 parent 3f8ea19 commit 63b829a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -48,7 +48,7 @@ THE SOFTWARE.

<ol>
<j:forEach var="c" items="${b.changeSet.iterator()}" varStatus="loop">
<li value="${c.revision}">
<li value="${c.revision.class.name == 'java.lang.Integer' ? c.revision : null}">
<j:out value="${c.msgAnnotated}"/>

&#8212;
Expand Down

0 comments on commit 63b829a

Please sign in to comment.