final InternationalString description = fd.getDescription();
sb.append(description != null ? description.toString()+ "," : "");
}
String description = sb.toString();
int pos = -1;
if (description.length() > 0 && (pos = description.lastIndexOf(",")) != -1) {
description = description.substring(0, pos);
}
DefaultRangeType range = new DefaultRangeType(covName,new SimpleInternationalString(description),fieldTypes);
rangeMap.put(covName, range);
}