We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4452e8a commit aaf7fbdCopy full SHA for aaf7fbd
src/main/java/org/brapi/test/BrAPITestServer/service/germ/PedigreeService.java
@@ -340,7 +340,7 @@ private List<PedigreeNodeEntity> filterGenerations(PedigreeSearchRequest request
340
}
341
342
// TODO: Should the pedigree node records written to the db be different? Converting to a hashset keeps
343
- // an entry for records with null pedigree which is not desired in output. Filtering out here for now.
+ // an entry for records with null germplasm which is not desired in output. Filtering out here for now.
344
List<PedigreeNodeEntity> filteredBaseNodes = baseNodes.stream()
345
.filter(node -> node.getGermplasm() != null)
346
.collect(Collectors.toList());
0 commit comments