Mercurial > mxd2map
diff src/java/de/intevation/mxd/reader/FillSymbolReader.java @ 336:a46adb3697fa
Fix annoying typo. s/contructor/constructor
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Mon, 05 Nov 2012 16:28:36 +0100 |
parents | 10e0aa283217 |
children |
line wrap: on
line diff
--- a/src/java/de/intevation/mxd/reader/FillSymbolReader.java Fri Oct 26 12:46:41 2012 +0200 +++ b/src/java/de/intevation/mxd/reader/FillSymbolReader.java Mon Nov 05 16:28:36 2012 +0100 @@ -58,7 +58,7 @@ */ public FillSymbolReader() throws Exception { - logger.debug("contructor()"); + logger.debug("constructor()"); this.symbol = null; this.fillSymbol = null; } @@ -70,7 +70,7 @@ */ public FillSymbolReader(ISymbol symbol) throws Exception { - logger.debug("contructor(ISymbol)"); + logger.debug("constructor(ISymbol)"); this.symbol = symbol; this.fillSymbol = null; } @@ -82,7 +82,7 @@ */ public FillSymbolReader(IFillSymbol symbol) throws Exception { - logger.debug("contructor(ILineSymbol)"); + logger.debug("constructor(ILineSymbol)"); this.fillSymbol = symbol; this.symbol= null; }