99499599699799899910001001100210031004
while(it.hasNext()){ KpiLine k = (KpiLine)it.next(); if(l==null){ l = k ; }else{ if (k!=null && k.compareTo(l)<=0){ temp.add(l); l = k; }else{ temp.add(k); }
431432433434435436437438439440441