Mercurial > dive4elements > river
changeset 5661:b6297a67823e
SedimentLoadFactory: Renamed getLoadwithData to getLoadWithData, update callers.
author | Felix Wolfsteller <felix.wolfsteller@intevation.de> |
---|---|
date | Thu, 11 Apr 2013 11:57:22 +0200 |
parents | a3b170869c77 |
children | 7e3cde8b564c |
files | flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/minfo/SedimentLoadCalculation.java flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/minfo/SedimentLoadFactory.java |
diffstat | 2 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/minfo/SedimentLoadCalculation.java Thu Apr 11 18:58:33 2013 +0200 +++ b/flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/minfo/SedimentLoadCalculation.java Thu Apr 11 11:57:22 2013 +0200 @@ -115,7 +115,7 @@ private SedimentLoadResult calculateEpoch(int i) { List<SedimentLoad> epochLoads = new ArrayList<SedimentLoad>(); for (int j = epoch[i][0]; j < epoch[i][1]; j++) { - epochLoads.add(SedimentLoadFactory.getLoadwithData( + epochLoads.add(SedimentLoadFactory.getLoadWithData( this.river, this.yearEpoch, this.kmLow, @@ -207,7 +207,7 @@ } private SedimentLoadResult calculateOffEpoch(int i) { - SedimentLoad load = SedimentLoadFactory.getLoadwithData( + SedimentLoad load = SedimentLoadFactory.getLoadWithData( this.river, this.yearEpoch, kmLow, @@ -234,7 +234,7 @@ } private SedimentLoadResult calculateYear(int y) { - SedimentLoad load = SedimentLoadFactory.getLoadwithData( + SedimentLoad load = SedimentLoadFactory.getLoadWithData( this.river, this.yearEpoch, this.kmLow,
--- a/flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/minfo/SedimentLoadFactory.java Thu Apr 11 18:58:33 2013 +0200 +++ b/flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/minfo/SedimentLoadFactory.java Thu Apr 11 11:57:22 2013 +0200 @@ -130,7 +130,7 @@ return values; } - public static SedimentLoad getLoadwithData( + public static SedimentLoad getLoadWithData( String river, String type, double startKm,