renamed GifCaptcha to PoppingCharactersCaptcha

This commit is contained in:
hrj
2021-04-19 17:26:09 +05:30
parent d81cf17a08
commit c362ed5cb0
3 changed files with 4 additions and 4 deletions

View File

@@ -19,7 +19,7 @@ import lc.captchas.interfaces.ChallengeProvider;
import lc.misc.HelperFunctions;
import lc.misc.GifSequenceWriter;
public class GifCaptcha implements ChallengeProvider {
public class PoppingCharactersCaptcha implements ChallengeProvider {
private final Font font = new Font("Arial", Font.ROMAN_BASELINE, 48);
private final int width = 250;
private final int height = 100;
@@ -108,6 +108,6 @@ public class GifCaptcha implements ChallengeProvider {
}
public String getId() {
return "GifCaptcha";
return "PoppingCharactersCaptcha";
}
}