String site_inclusion = "0;100";
for (String inc: site_inclusion.split(";")) {
if(!inc.equals(String.valueOf(record.getAttrs().get(new PdsxAttrKey("SiteId")).getValue()))) {
continue;
}
}
And record.getAttrs().get(new PdsxAttrKey("SiteId")).getValue() returns 77
So from my code it should be going to continue block right? But it is not going to continue?
Any suggestions?
I suggest you simplify your code to test what’s going on. You might have made a mistake trying to build an example.