Update el3_intro.xhtml

This commit is contained in:
k0l0ssus 2016-08-06 00:45:22 -04:00 committed by GitHub
parent 414735b8c3
commit e97cd1122f
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@
<h:outputText id="avgPageVar" value="#{pageLevelNumberList.stream().average().get()}"/>
<br/>
<h:panelGrid title="Data Structures" border="3" >
<h:dataTable var="streamResult" value="#{ELBean.numberList.stream().filter(x-> x>1).toList()}">
<h:dataTable var="streamResult" value="#{pageLevelNumberList.stream().filter(x-> x>1).toList()}">
<h:column id="nameCol">
<h:outputText id="name" value="#{streamResult}"/>
</h:column>