Commit 166a737fc757a9f50573b57c3a018ac9ad461615
1 parent
3c109706
班次间隔统计表
Showing
1 changed file
with
1 additions
and
2 deletions
src/main/java/com/bsth/service/impl/BusIntervalServiceImpl.java
| ... | ... | @@ -460,7 +460,6 @@ public class BusIntervalServiceImpl implements BusIntervalService { |
| 460 | 460 | if(!keyList.contains(key)) |
| 461 | 461 | keyList.add(key); |
| 462 | 462 | } |
| 463 | - System.out.println("key:"+key+" fcsj2:"+fcsj2+" fcsj1:"+fcsj2+" temp1:"+temp1.get(key)+" tem0:"+temp0.get(key)); | |
| 464 | 463 | temp1.get(key).add(fcsj2 - fcsj1); |
| 465 | 464 | } |
| 466 | 465 | } |
| ... | ... | @@ -562,7 +561,7 @@ public class BusIntervalServiceImpl implements BusIntervalService { |
| 562 | 561 | if(l < 90) |
| 563 | 562 | fcsjs.add(l); |
| 564 | 563 | } |
| 565 | - if(temp0.containsKey(key)) | |
| 564 | + if(temp1.containsKey(key)) | |
| 566 | 565 | for(Long l : temp1.get(key)){ |
| 567 | 566 | if(l < 90) |
| 568 | 567 | fcsjAs.add(l); | ... | ... |