Mercurial > dive4elements > gnv-client
diff gnv-artifacts/src/main/java/de/intevation/gnv/chart/VerticalProfileChartFactory.java @ 88:1b12021905b9
Some CodeCleanup done.
ExceptionDocument will now be returned
gnv-artifacts/trunk@125 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Thu, 24 Sep 2009 10:45:24 +0000 |
parents | 5d4f5d26bb7a |
children | b465f1bbe368 |
line wrap: on
line diff
--- a/gnv-artifacts/src/main/java/de/intevation/gnv/chart/VerticalProfileChartFactory.java Thu Sep 24 10:05:07 2009 +0000 +++ b/gnv-artifacts/src/main/java/de/intevation/gnv/chart/VerticalProfileChartFactory.java Thu Sep 24 10:45:24 2009 +0000 @@ -325,7 +325,7 @@ Iterator<KeyValueDescibeData> it = values.iterator(); while(it.hasNext()){ KeyValueDescibeData data = it.next(); - if (id ==Integer.parseInt(data.getKey())){ // TODO just a hack + if (id ==Integer.parseInt(data.getKey())){ return data.getValue(); } }