Skip to content

Commit

Permalink
[pre-commit.ci lite] apply automatic fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci-lite[bot] authored Oct 13, 2024
1 parent 2de1320 commit e91d20f
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
import org.springframework.beans.factory.annotation.Value;

public class Challenge51 extends FixedAnswerChallenge {
private final String dockerSecret;
private final String dockerSecret;

public Challenge51(@Value("${DOCKER_SECRET_CHALLENGE51}") String dockerSecret) {
this.dockerSecret = dockerSecret;
}
public Challenge51(@Value("${DOCKER_SECRET_CHALLENGE51}") String dockerSecret) {
this.dockerSecret = dockerSecret;
}

@Override
public String getAnswer() {
return this.dockerSecret;
}
@Override
public String getAnswer() {
return this.dockerSecret;
}
}

0 comments on commit e91d20f

Please sign in to comment.