|  |  | @ -72,12 +72,12 @@ public class AgencyServiceImpl implements AgencyService { | 
			
		
	
		
			
				
					|  |  |  |      * @date 2020/8/26 5:18 下午 | 
			
		
	
		
			
				
					|  |  |  |      */ | 
			
		
	
		
			
				
					|  |  |  |     public List<Double> getCenterMark(String centerMark){ | 
			
		
	
		
			
				
					|  |  |  |         if (centerMark.length() == NumConstant.ZERO) { | 
			
		
	
		
			
				
					|  |  |  |         if (centerMark.length() == NumConstant.ZERO || centerMark.equals(ScreenConstant.SQUARE_BRACKETS)) { | 
			
		
	
		
			
				
					|  |  |  |             return new ArrayList<>(); | 
			
		
	
		
			
				
					|  |  |  |         } | 
			
		
	
		
			
				
					|  |  |  |         List<Double> result = new ArrayList<>(); | 
			
		
	
		
			
				
					|  |  |  |         String substring = centerMark.substring(2, centerMark.length() - 2); | 
			
		
	
		
			
				
					|  |  |  |         String[] split = substring.split(","); | 
			
		
	
		
			
				
					|  |  |  |         String substring = centerMark.substring(NumConstant.TWO, centerMark.length() - NumConstant.TWO); | 
			
		
	
		
			
				
					|  |  |  |         String[] split = substring.split(ScreenConstant.COMMA); | 
			
		
	
		
			
				
					|  |  |  |         for (String s : split) { | 
			
		
	
		
			
				
					|  |  |  |             result.add(Double.valueOf(s)); | 
			
		
	
		
			
				
					|  |  |  |         } | 
			
		
	
	
		
			
				
					|  |  | 
 |