去除生成验证码多余的逻辑判断
This commit is contained in:
		
							parent
							
								
									c7c3da2038
								
							
						
					
					
						commit
						edefee46b2
					
				@ -45,7 +45,7 @@ public class KaptchaTextCreator extends DefaultTextCreator
 | 
				
			|||||||
                suChinese.append(CNUMBERS[y]);
 | 
					                suChinese.append(CNUMBERS[y]);
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        else if (randomoperands == 2)
 | 
					        else
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            if (x >= y)
 | 
					            if (x >= y)
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
@ -62,13 +62,6 @@ public class KaptchaTextCreator extends DefaultTextCreator
 | 
				
			|||||||
                suChinese.append(CNUMBERS[x]);
 | 
					                suChinese.append(CNUMBERS[x]);
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        else
 | 
					 | 
				
			||||||
        {
 | 
					 | 
				
			||||||
            result = x + y;
 | 
					 | 
				
			||||||
            suChinese.append(CNUMBERS[x]);
 | 
					 | 
				
			||||||
            suChinese.append("+");
 | 
					 | 
				
			||||||
            suChinese.append(CNUMBERS[y]);
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        suChinese.append("=?@" + result);
 | 
					        suChinese.append("=?@" + result);
 | 
				
			||||||
        return suChinese.toString();
 | 
					        return suChinese.toString();
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user