Removed obsolete captcha class

This commit is contained in:
Rohan Sircar 2020-05-27 17:05:37 +05:30
parent d9bcb7f76f
commit af024f4cef

View File

@ -1,16 +0,0 @@
package org.ros.chatto.captcha;
import lombok.Builder;
@Builder
public class WebCaptchaBuilder {
private CaptchaBehaviour captchaBehaviour;
// public WebCaptchaBuilder(CaptchaBehaviour captchaBehaviour)
// {
// this.captchaBehaviour = captchaBehaviour;
// }
public WebCaptcha build()
{
return new WebCaptcha(captchaBehaviour);
}
}