comparison artifacts/src/main/java/org/dive4elements/river/artifacts/model/minfo/SedimentLoadData.java @ 8128:65a938e4d92f

Fix compilation of last commit I think it was intended this way.
author Andre Heinecke <andre.heinecke@intevation.de>
date Mon, 25 Aug 2014 17:28:18 +0200
parents 8c5eb9edc3f3
children bbad52b073a4
comparison
equal deleted inserted replaced
8127:8c5eb9edc3f3 8128:65a938e4d92f
396 } 396 }
397 int mid = (lo+hi)/2; 397 int mid = (lo+hi)/2;
398 Station st = stations[mid]; 398 Station st = stations[mid];
399 double station = st.getStation(); 399 double station = st.getStation();
400 if (station < a) { 400 if (station < a) {
401 recursiveFindStations(a, b, mid+1, hi) 401 recursiveFindStations(a, b, mid+1, hi, visitor);
402 } else if (station > b) { 402 } else if (station > b) {
403 recursiveFindStations(a, b, lo, mid-1) 403 recursiveFindStations(a, b, lo, mid-1, visitor);
404 } else { 404 } else {
405 recursiveFindStations(a, b, lo, mid-1, visitor); 405 recursiveFindStations(a, b, lo, mid-1, visitor);
406 visitor.visit(st); 406 visitor.visit(st);
407 recursiveFindStations(a, b, mid+1, hi, visitor); 407 recursiveFindStations(a, b, mid+1, hi, visitor);
408 } 408 }

http://dive4elements.wald.intevation.org