Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in name of internal class registering SecretBytesRedaction #562

Merged
merged 1 commit into from
Oct 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
import org.kohsuke.accmod.restrictions.NoExternalUse;

@Restricted(NoExternalUse.class)
public class SecretBytesReactionExtension {
public class SecretBytesRedactionExtension {

public static final Logger LOGGER = Logger.getLogger(SecretBytesReactionExtension.class.getName());
public static final Logger LOGGER = Logger.getLogger(SecretBytesRedactionExtension.class.getName());

// TODO Delete this and annotate `SecretBytesRedaction` with `@Extension` once the core dependency is >= 2.479

Check warning on line 16 in src/main/java/com/cloudbees/plugins/credentials/SecretBytesRedactionExtension.java

View check run for this annotation

ci.jenkins.io / Open Tasks Scanner

TODO

NORMAL: Delete this and annotate `SecretBytesRedaction` with `@Extension` once the core dependency is >= 2.479
@Initializer
public static void create() {
try {
Expand Down
Loading