Mercurial > mxd2map
diff src/java/de/intevation/mxd/reader/LineFillSymbolReader.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/LineFillSymbolReader.java Wed Jun 22 12:01:28 2011 +0200 +++ b/src/java/de/intevation/mxd/reader/LineFillSymbolReader.java Wed Jun 22 13:55:22 2011 +0200 @@ -81,8 +81,7 @@ String.valueOf(symbol.getOffset())); } catch(IOException ioe) { - logger.warn("Could not read offset. Setting offset to 0."); - symbolElement.setAttribute("offset", "0"); + logger.warn("Could not read offset."); } try { @@ -91,8 +90,7 @@ String.valueOf(symbol.getSeparation())); } catch(IOException ioe) { - logger.warn("Could not read separation. setting separation to 1."); - symbolElement.setAttribute("separation", "1"); + logger.warn("Could not read separation."); } try { @@ -101,8 +99,7 @@ String.valueOf(symbol.getAngle())); } catch(IOException e) { - logger.warn("Could not read angle. Setting angle to 0."); - symbolElement.setAttribute("angle", "0"); + logger.warn("Could not read angle."); } try { @@ -129,14 +126,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 { @@ -154,7 +144,7 @@ } } catch(Exception e) { - logger.warn("Could not read outline. No fallback defined."); + logger.warn("Could not read outline."); } try { @@ -173,7 +163,7 @@ } } catch(Exception e) { - logger.warn("Could not read line symbol. No fallback defined"); + logger.warn("Could not read line symbol."); } return parent; }