refactoring

This commit is contained in:
Miriam Baglioni 2020-10-01 16:23:52 +02:00
parent 61946b4092
commit 4aec347351
2 changed files with 3 additions and 4 deletions

View File

@ -26,7 +26,6 @@ public class CSVProject implements Serializable {
private String participantCountries;
private String subjects;
public String getRcn() {
return rcn;
}

View File

@ -56,11 +56,11 @@ public class EXCELParser {
}
EXCELTopic et = (EXCELTopic)cc;
if(StringUtils.isNotBlank(et.getRcn())){
EXCELTopic et = (EXCELTopic) cc;
if (StringUtils.isNotBlank(et.getRcn())) {
ret.add((R) cc);
}
}
count += 1;