Skip to content

Build fails due to ambiguity in java.util.Base64 and org.rsna.util.Base64 in SenderThread.java #2

@puru1761

Description

@puru1761

The basic authentication script in line 90 given below causes a build fail due to the ambiguity in java.util.Base64 and org.rsna.util.Base64

this.authHeader = "Basic " + Base64.encodeToString((username + ":" + password).getBytes());

Fixed code On line 90:
this.authHeader = "Basic " + org.rsna.util.Base64.encodeToString((username + ":" + password).getBytes());

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions