File tree 1 file changed +1
-1
lines changed
src/main/java/org/owasp/wrongsecrets/challenges
1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ public class ChallengesCtfController {
25
25
private final Challenges challenges ;
26
26
private final ChallengeDefinitionsConfiguration wrongSecretsConfiguration ;
27
27
private final RuntimeEnvironment runtimeEnvironment ;
28
- private final String disabledChallenge = "This challenge is disbled" ;
29
28
30
29
public ChallengesCtfController (
31
30
ScoreCard scoreCard ,
@@ -54,6 +53,7 @@ public String getChallenges() {
54
53
jsonChallenge .put ("name" , definition .name ().name ());
55
54
jsonChallenge .put ("key" , definition .name ().shortName ());
56
55
jsonChallenge .put ("category" , getCategory () + " - " + definition .category ().category ());
56
+ String disabledChallenge = "This challenge is disbled" ;
57
57
jsonChallenge .put (
58
58
"description" ,
59
59
definition
You can’t perform that action at this time.
0 commit comments