Mercurial > mxd2map
diff src/java/de/intevation/mxd/reader/ArrowMarkerSymbolReader.java @ 135:a4ab239509f1
Updated the default values and reader error handling.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Wed, 22 Jun 2011 13:55:22 +0200 |
parents | fb93f20478cc |
children | 0bde090506f9 |
line wrap: on
line diff
--- a/src/java/de/intevation/mxd/reader/ArrowMarkerSymbolReader.java Wed Jun 22 12:01:28 2011 +0200 +++ b/src/java/de/intevation/mxd/reader/ArrowMarkerSymbolReader.java Wed Jun 22 13:55:22 2011 +0200 @@ -87,12 +87,7 @@ } } catch(IOException ioe) { - logger.warn( - "Could not read color." + - " Setting color to black with no transparency."); - Color black = new Color(0, 0, 0); - symbolElement.setAttribute("color", String.valueOf(black.getRGB())); - symbolElement.setAttribute("transparency", "-1"); + logger.warn("Could not read color."); } try { @@ -101,8 +96,7 @@ String.valueOf(symbol.getAngle())); } catch(IOException ioe) { - logger.warn("Could not read angle. Setting angle to 0."); - symbolElement.setAttribute("angle", "0"); + logger.warn("Could not read angle."); } try { @@ -121,8 +115,7 @@ String.valueOf(symbol.getXOffset())); } catch(IOException ioe) { - logger.warn("Could not read x-offset. Setting x-offset to 0."); - symbolElement.setAttribute("x_offset", "0"); + logger.warn("Could not read x-offset."); } try { @@ -131,8 +124,7 @@ String.valueOf(symbol.getYOffset())); } catch(IOException ioe) { - logger.warn("Could not read y-offset. Setting y-offset to 0."); - symbolElement.setAttribute("y_offset", "0"); + logger.warn("Could not read y-offset."); } try { @@ -151,8 +143,7 @@ String.valueOf(symbol.getLength())); } catch(IOException ioe) { - logger.warn("Could not read length. Setting length to 1."); - symbolElement.setAttribute("length", "1"); + logger.warn("Could not read length."); } try { @@ -161,8 +152,7 @@ String.valueOf(symbol.getWidth())); } catch(IOException ioe) { - logger.warn("Could not read width. Setting width to 1."); - symbolElement.setAttribute("width", "1"); + logger.warn("Could not read width."); } symbolElement.setAttribute("style", "arrow"); symbolElement.setAttribute("type", "marker");