Mercurial > dive4elements > river
comparison flys-client/src/main/java/de/intevation/flys/client/server/RiverServiceImpl.java @ 3379:0de61fc9d281
Removed some superfluous casts.
flys-client/trunk@5116 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Tue, 24 Jul 2012 08:11:41 +0000 |
parents | 2867a0192aed |
children | d45fcf70b994 |
comparison
equal
deleted
inserted
replaced
3378:c8193b600d9b | 3379:0de61fc9d281 |
---|---|
89 tmp, "@art:name", ArtifactNamespaceContext.INSTANCE); | 89 tmp, "@art:name", ArtifactNamespaceContext.INSTANCE); |
90 | 90 |
91 theRivers.add(new DefaultRiver(name)); | 91 theRivers.add(new DefaultRiver(name)); |
92 } | 92 } |
93 | 93 |
94 return (River[]) theRivers.toArray(new River[count]); | 94 return theRivers.toArray(new River[count]); |
95 } | 95 } |
96 catch (ConnectionException ce) { | 96 catch (ConnectionException ce) { |
97 logger.error(ce, ce); | 97 logger.error(ce, ce); |
98 } | 98 } |
99 | 99 |