Fix text types
This commit is contained in:
parent
3a3e68bb8c
commit
02f0be7d22
1 changed files with 3 additions and 1 deletions
|
@ -72,7 +72,9 @@ public class BinaryMapPoiReaderAdapter {
|
|||
}
|
||||
if(subTypes.size() > tl) {
|
||||
PoiSubType st = subTypes.get(tl);
|
||||
if(!st.text && st.possibleValues != null && st.possibleValues.size() > sl) {
|
||||
if (st.text) {
|
||||
return st;
|
||||
} else if (st.possibleValues != null && st.possibleValues.size() > sl) {
|
||||
returnValue.append(st.possibleValues.get(sl));
|
||||
return st;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue