Policy failures:   
Code warning
- failed on resource ListReportController.java. Reason: ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized, line 74
- failed on resource ListReportController.java. Reason: ArrayList is a raw type. References to generic type ArrayList<E> should be parameterized, line 98
- failed on resource ListReportController.java. Reason: List is a raw type. References to generic type List<E> should be parameterized, line 74
- failed on resource ListReportController.java. Reason: List is a raw type. References to generic type List<E> should be parameterized, line 98
- failed on resource ListReportController.java. Reason: Type safety: The method add(Object) belongs to the raw type List. References to generic type List<E> should be parameterized, line 102
... and more.  
Override reason:   
huhu
This commit is contained in:
Frederic Debuire
2008-02-25 10:32:50 +00:00
parent 15a2f365a6
commit 3fd37463d9
9 changed files with 244 additions and 62 deletions

View File

@@ -306,7 +306,12 @@ function showArticleReferee() {
${referee.firstName} ${referee.lastName}<br/>
</c:forEach>
</c:when>
<c:otherwise>
<c:otherwise>
&nbsp;
</c:otherwise>
</c:choose>
</td>
<td>
<c:if test="${article.evaluated == false}">
<c:if test="${article.state != 'REJECTED' and article.state != 'ACCEPTED'}">
To evaluate
@@ -322,10 +327,7 @@ function showArticleReferee() {
</c:if>
<c:if test="${article.state == 'ACCEPTED'}">
Accepted
</c:if>
</c:otherwise>
</c:choose>
</c:if>
</td>
<td align="center" width="25%">
<a href="chooseConference.htm?idConf=${article.conference.id}">${article.conference.title}</a>