|
From: <mar...@us...> - 2016-04-20 11:11:22
|
Revision: 19251
http://sourceforge.net/p/gate/code/19251
Author: markagreenwood
Date: 2016-04-20 11:11:20 +0000 (Wed, 20 Apr 2016)
Log Message:
-----------
fix a constructor, which fortunately we don't use that was passing the wrong values on to the main constructor method, fixes bug #204
Modified Paths:
--------------
gate/trunk/src/main/gate/creole/gazetteer/LinearNode.java
Modified: gate/trunk/src/main/gate/creole/gazetteer/LinearNode.java
===================================================================
--- gate/trunk/src/main/gate/creole/gazetteer/LinearNode.java 2016-04-20 10:05:04 UTC (rev 19250)
+++ gate/trunk/src/main/gate/creole/gazetteer/LinearNode.java 2016-04-20 11:11:20 UTC (rev 19251)
@@ -71,7 +71,7 @@
* the language(s)
*/
public LinearNode(String aList, String aMajor, String aMinor, String aLanguage) {
- this(aLanguage, aMajor, aMinor, aLanguage, null);
+ this(aList, aMajor, aMinor, aLanguage, null);
} // LinearNode construct
/**
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|