[cleanup] erefactor/EclipseJdt - Remove trailing whitespace - All lines

EclipseJdt cleanup 'RemoveAllTrailingWhitespace' applied by erefactor.

For EclipseJdt see https://www.eclipse.org/eclipse/news/4.18/jdt.php
For erefactor see https://github.com/cal101/erefactor
This commit is contained in:
cal101
2021-02-27 09:54:18 +00:00
parent b285db71cd
commit e41c676ed5
20 changed files with 89 additions and 89 deletions

View File

@@ -6,7 +6,7 @@ import cn.hutool.core.util.StrUtil;
/**
* 随机字符验证码生成器<br>
* 可以通过传入的基础集合和长度随机生成验证码字符
*
*
* @author looly
* @since 4.1.2
*/
@@ -15,7 +15,7 @@ public class RandomGenerator extends AbstractGenerator {
/**
* 构造,使用字母+数字做为基础
*
*
* @param count 生成验证码长度
*/
public RandomGenerator(int count) {
@@ -24,7 +24,7 @@ public class RandomGenerator extends AbstractGenerator {
/**
* 构造
*
*
* @param baseStr 基础字符集合,用于随机获取字符串的字符集合
* @param length 生成验证码长度
*/
@@ -36,7 +36,7 @@ public class RandomGenerator extends AbstractGenerator {
public String generate() {
return RandomUtil.randomString(this.baseStr, this.length);
}
@Override
public boolean verify(String code, String userInputCode) {
if (StrUtil.isNotBlank(userInputCode)) {

View File

@@ -1,6 +1,6 @@
/**
* 验证码生成策略实现
*
*
* @author looly
* @since 4.1.2
*/

View File

@@ -1,6 +1,6 @@
/**
* 图片验证码实现
*
*
* @author looly
*
*/

View File

@@ -4,7 +4,7 @@ import org.junit.Ignore;
import org.junit.Test;
public class CaptchaUtilTest {
@Test
@Ignore
public void createTest() {