Mercurial > mxd2map
diff src/java/de/intevation/mxd/reader/SimpleFillSymbolReader.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 | df4e0946ef02 |
children |
line wrap: on
line diff
--- a/src/java/de/intevation/mxd/reader/SimpleFillSymbolReader.java Fri Oct 26 12:46:41 2012 +0200 +++ b/src/java/de/intevation/mxd/reader/SimpleFillSymbolReader.java Mon Nov 05 16:28:36 2012 +0100 @@ -60,7 +60,7 @@ */ public SimpleFillSymbolReader(ISymbol symbol) throws Exception { - logger.debug("contructor(ISymbol)"); + logger.debug("constructor(ISymbol)"); if(symbol instanceof SimpleFillSymbol) { this.symbol = (SimpleFillSymbol)symbol; } @@ -76,7 +76,7 @@ */ public SimpleFillSymbolReader(IFillSymbol symbol) throws Exception { - logger.debug("contructor(IFillSymbol)"); + logger.debug("constructor(IFillSymbol)"); if(symbol instanceof SimpleFillSymbol) { this.symbol = (SimpleFillSymbol)symbol; }