Skip to content

Commit

Permalink
[JENKINS-16831] avoid JDK 1.6 dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
kohsuke committed Feb 16, 2013
1 parent d4230ff commit f440a54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/hudson/widgets/BuildHistoryWidget.java
Expand Up @@ -62,7 +62,7 @@ public List<Item> getQueuedItems() {
LinkedList<Item> list = new LinkedList<Item>();
for (Item item : Jenkins.getInstance().getQueue().getApproximateItemsQuickly()) {
if (item.task == owner) {
list.push(item);
list.addFirst(item);
}
}
return list;
Expand Down

0 comments on commit f440a54

Please sign in to comment.