Minor reformat

Signed-off-by: Rahul Rudragoudar <rr83019@gmail.com>
This commit is contained in:
Rahul Rudragoudar 2021-04-15 11:40:23 +05:30
parent a33b9f1ab5
commit 33cd6c0525
No known key found for this signature in database
GPG Key ID: 0D2CE231A7287EBC
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ class BackgroundTask(throttle: Int, timeLimit: Int) {
Captcha.generateChallenge(Parameters("medium", "image/png", "text", Option(Size(0, 0))))
throttleIn -= 1
}
} catch { case exception: Exception => println(exception.getStackTrace()) }
} catch { case exception: Exception => println(exception) }
}
}

View File

@ -12,7 +12,7 @@ object CaptchaProviders {
"GifCaptcha" -> new GifCaptcha,
"ShadowTextCaptcha" -> new ShadowTextCaptcha,
"RainDropsCaptcha" -> new RainDropsCP,
"DebugCaptcha" -> new DebugCaptcha,
"DebugCaptcha" -> new DebugCaptcha
//"LabelCaptcha" -> new LabelCaptcha
)