comparison artifacts/src/main/java/org/dive4elements/river/artifacts/model/minfo/SedimentLoadData.java @ 8767:d0f2250b5521

Remove unused method.
author Tom Gottfried <tom@intevation.de>
date Thu, 20 Aug 2015 14:21:54 +0200
parents 69b0a71b4845
children ef0ec2498dd0
comparison
equal deleted inserted replaced
8766:35c0b3fccc03 8767:d0f2250b5521
530 }); 530 });
531 531
532 return loads; 532 return loads;
533 } 533 }
534 534
535 /** Find all official loads with a distinct time interval id */
536 public Collection<Load> findUniqueTiOfficialLoads(double a, double b) {
537 final TreeSet<Load> loads = new TreeSet<Load>(LOAD_TI_CMP);
538
539 findStations(a, b, new Visitor() {
540 @Override
541 public void visit(Station station) {
542 station.allOfficialLoads(loads);
543 }
544 });
545
546 return loads;
547 }
548
549 /** Get a list of loads with unique sq_time_intervals. 535 /** Get a list of loads with unique sq_time_intervals.
550 * 536 *
551 * This is mainly a convenience function for the SedimentLoadInfoService. 537 * This is mainly a convenience function for the SedimentLoadInfoService.
552 */ 538 */
553 public Collection<Load> findDistinctSQTimeIntervalNonEpochLoads(double a, double b) { 539 public Collection<Load> findDistinctSQTimeIntervalNonEpochLoads(double a, double b) {

http://dive4elements.wald.intevation.org