comparison artifacts/src/main/java/org/dive4elements/river/artifacts/access/BedHeightAccess.java @ 8559:6d8d7425a6b5

Bed heights are just bed heights since a while ('single' is obsolete).
author "Tom Gottfried <tom@intevation.de>"
date Mon, 16 Feb 2015 11:08:33 +0100
parents e4606eae8ea5
children 5c4766ac20ba
comparison
equal deleted inserted replaced
8558:d0ea092a32f5 8559:6d8d7425a6b5
47 // TODO update callers 47 // TODO update callers
48 return getTo(); 48 return getTo();
49 } 49 }
50 50
51 51
52 public int[] getBedHeightSingleIDs() { 52 public int[] getBedHeightIDs() {
53 if (singleIDs == null) { 53 if (singleIDs == null) {
54 String data = getString("soundings"); 54 String data = getString("soundings");
55 55
56 if (data == null) { 56 if (data == null) {
57 log.warn("No 'soundings' parameter specified!"); 57 log.warn("No 'soundings' parameter specified!");
58 return null; 58 return null;
59 } 59 }
60 else { 60 else {
61 log.debug("getBedHeightSingleIDs(): data=" + data); 61 log.debug("getBedHeightIDs(): data=" + data);
62 } 62 }
63 63
64 String[] parts = data.split(";"); 64 String[] parts = data.split(";");
65 65
66 TIntArrayList ids = new TIntArrayList(); 66 TIntArrayList ids = new TIntArrayList();

http://dive4elements.wald.intevation.org