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 participantCountries;
private String subjects; private String subjects;
public String getRcn() { public String getRcn() {
return rcn; return rcn;
} }

View File

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