稚屿
3 years ago
committed by
Gitee
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with
1 additions and
8 deletions
-
ruoyi-framework/src/main/java/com/ruoyi/framework/config/KaptchaTextCreator.java
|
|
@ -45,7 +45,7 @@ public class KaptchaTextCreator extends DefaultTextCreator |
|
|
|
suChinese.append(CNUMBERS[y]); |
|
|
|
} |
|
|
|
} |
|
|
|
else if (randomoperands == 2) |
|
|
|
else |
|
|
|
{ |
|
|
|
if (x >= y) |
|
|
|
{ |
|
|
@ -62,13 +62,6 @@ public class KaptchaTextCreator extends DefaultTextCreator |
|
|
|
suChinese.append(CNUMBERS[x]); |
|
|
|
} |
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|
result = x + y; |
|
|
|
suChinese.append(CNUMBERS[x]); |
|
|
|
suChinese.append("+"); |
|
|
|
suChinese.append(CNUMBERS[y]); |
|
|
|
} |
|
|
|
suChinese.append("=?@" + result); |
|
|
|
return suChinese.toString(); |
|
|
|
} |
|
|
|