Fix Wiki Indexer
This commit is contained in:
parent
33ec765976
commit
32e6cde49d
1 changed files with 3 additions and 6 deletions
|
@ -247,8 +247,8 @@ public class WikiIndexer {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(!neq){
|
if (!neq) {
|
||||||
res = i;
|
res = i + prop.length();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -258,7 +258,7 @@ public class WikiIndexer {
|
||||||
}
|
}
|
||||||
int sr = -1;
|
int sr = -1;
|
||||||
int se = e;
|
int se = e;
|
||||||
for (int i = res + 1; i < e; i++) {
|
for (int i = res ; i < e; i++) {
|
||||||
if (sr == -1) {
|
if (sr == -1) {
|
||||||
if (text.charAt(i) != '=' && !Character.isWhitespace(text.charAt(i))) {
|
if (text.charAt(i) != '=' && !Character.isWhitespace(text.charAt(i))) {
|
||||||
sr = i;
|
sr = i;
|
||||||
|
@ -384,9 +384,6 @@ public class WikiIndexer {
|
||||||
if(description.length() > 0) {
|
if(description.length() > 0) {
|
||||||
writeNode(lat, lon, subcategory, description);
|
writeNode(lat, lon, subcategory, description);
|
||||||
}
|
}
|
||||||
System.out.println("Point " + title + " " + subcategory + " Lon:" + lat + " Lon:" + lon + " " );
|
|
||||||
System.out.println("Description : " + description.toString().trim());
|
|
||||||
System.out.println("---------------------");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue