Skip to content

misspelled getCaseSensisitiveId in SpdxListedLicenseModelStore #266

Closed
@bact

Description

@bact

Two misspelling here:

  • getCaseSensisitiveId -> getCaseSensitiveId
  • caseInsensisitiveId -> caseInsensitiveId

@Override
public Optional<String> getCaseSensisitiveId(String documentUri, String caseInsensisitiveId) {
Optional<String> retval = listedLicenseIdCaseSensitive(caseInsensisitiveId);
if (retval.isPresent()) {
return retval;
}
return listedExceptionIdCaseSensitive(caseInsensisitiveId);
}

  • They are from a public method.
  • Changing any of them will break any code that use the misspelled one.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions