Skip to content

Suggestion for error in org.openehr.am.validation.RMInspector #24

Description

@viniciusyoshiura
  • In lines 327 and 357 of org.openehr.am.validation.RMInspector, a null pointer exception is raised since sometimes the "rmClass.getSimpleName()" (inside log.debug) is null. Therefore, we propose the insertion of the following code:
if(rmClass != null) {
     log.debug("rmClass: "+ rmClass.getSimpleName());
} else {
     log.debug("rmClass null");
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions