Project

General

Profile

« Previous | Next » 

Revision 637becc5

Added by Andreas Kohlbecker almost 6 years ago

ref #7331 using load instead of find to avoid the magic bug in the AdvancedBeaninitializer

View differences:

src/main/java/eu/etaxonomy/cdm/service/RegistrationWorkingSetService.java
214 214
    @Override
215 215
    public RegistrationWorkingSet loadWorkingSetByReferenceUuid(UUID referenceUuid, boolean resolveSections) throws RegistrationValidationException {
216 216

  
217
        Reference reference = repo.getReferenceService().find(referenceUuid); // needed to use load to avoid the problem described in #7331
217
        Reference reference = repo.getReferenceService().load(referenceUuid); // needed to use load to avoid the problem described in #7331
218 218
        if(resolveSections){
219 219
            reference = resolveSection(reference);
220 220
        }

Also available in: Unified diff