toString method for Challenge

This commit is contained in:
hrj 2019-06-08 11:06:53 +05:30
parent 77a7f730fe
commit 9c7efb5e4a

View File

@ -10,4 +10,8 @@ public class Challenge {
this.contentType = contentType;
this.secret = secret;
}
public String toString() {
return "Challenge: " + contentType + " content length: " + content.length;
}
}