fixed issue on substring
This commit is contained in:
parent
7fe00cb4fb
commit
1b0b968548
|
@ -161,16 +161,22 @@ public class Mapper implements Serializable {
|
||||||
.getContext()
|
.getContext()
|
||||||
.stream()
|
.stream()
|
||||||
.map(c -> {
|
.map(c -> {
|
||||||
if (communities.contains(c.getId())
|
String community_id = c.getId();
|
||||||
|| communities.contains(c.getId().substring(0, c.getId().indexOf("::")))) {
|
if (community_id.indexOf("::") > 0) {
|
||||||
Context context = new Context();
|
community_id = community_id.substring(0, community_id.indexOf("::"));
|
||||||
if (!communityMap.containsKey(c.getId())) {
|
|
||||||
context.setCode(c.getId().substring(0, c.getId().indexOf("::")));
|
|
||||||
context.setLabel(communityMap.get(context.getCode()));
|
|
||||||
} else {
|
|
||||||
context.setCode(c.getId());
|
|
||||||
context.setLabel(communityMap.get(c.getId()));
|
|
||||||
}
|
}
|
||||||
|
if (communities.contains(community_id)) {
|
||||||
|
// || communities.contains(c.getId().substring(0, c.getId().indexOf("::")))) {
|
||||||
|
Context context = new Context();
|
||||||
|
context.setCode(community_id);
|
||||||
|
context.setLabel(communityMap.get(community_id));
|
||||||
|
// if (!communityMap.containsKey(c.getId())) {
|
||||||
|
// context.setCode(c.getId().substring(0, c.getId().indexOf("::")));
|
||||||
|
// context.setLabel(communityMap.get(context.getCode()));
|
||||||
|
// } else {
|
||||||
|
// context.setCode(c.getId());
|
||||||
|
// context.setLabel(communityMap.get(c.getId()));
|
||||||
|
// }
|
||||||
Optional<List<DataInfo>> dataInfo = Optional.ofNullable(c.getDataInfo());
|
Optional<List<DataInfo>> dataInfo = Optional.ofNullable(c.getDataInfo());
|
||||||
if (dataInfo.isPresent()) {
|
if (dataInfo.isPresent()) {
|
||||||
List<String> provenance = new ArrayList<>();
|
List<String> provenance = new ArrayList<>();
|
||||||
|
|
Loading…
Reference in New Issue