mirror of
				https://github.com/dromara/RuoYi-Vue-Plus.git
				synced 2025-11-04 08:13:44 +08:00 
			
		
		
		
	StringBuilder append方法改为链式调用
This commit is contained in:
		@@ -92,7 +92,7 @@ public class DictUtils
 | 
			
		||||
                {
 | 
			
		||||
                    if (value.equals(dict.getDictValue()))
 | 
			
		||||
                    {
 | 
			
		||||
                        propertyString.append(dict.getDictLabel() + separator);
 | 
			
		||||
                        propertyString.append(dict.getDictLabel()).append(separator);
 | 
			
		||||
                        break;
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
@@ -132,7 +132,7 @@ public class DictUtils
 | 
			
		||||
                {
 | 
			
		||||
                    if (label.equals(dict.getDictLabel()))
 | 
			
		||||
                    {
 | 
			
		||||
                        propertyString.append(dict.getDictValue() + separator);
 | 
			
		||||
                        propertyString.append(dict.getDictValue()).append(separator);
 | 
			
		||||
                        break;
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user