|  |  | @ -413,9 +413,9 @@ public class InternalHelpController { | 
			
		
	
		
		
			
				
					
					|  |  |  |         File executableLocation = null; |  |  |  |         File executableLocation = null; | 
			
		
	
		
		
			
				
					
					|  |  |  |         for (String name: Arrays.asList(executableName, String.format("%s.exe", executableName))) { |  |  |  |         for (String name: Arrays.asList(executableName, String.format("%s.exe", executableName))) { | 
			
		
	
		
		
			
				
					
					|  |  |  |             executableLocation = new File(transcodingService.getTranscodeDirectory(), name); |  |  |  |             executableLocation = new File(transcodingService.getTranscodeDirectory(), name); | 
			
		
	
		
		
			
				
					
					|  |  |  |             if (executableLocation.exists()) return executableLocation; |  |  |  |             if (executableLocation != null && executableLocation.exists()) return executableLocation; | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |             executableLocation = lookForExecutable(executableName); |  |  |  |             executableLocation = lookForExecutable(executableName); | 
			
		
	
		
		
			
				
					
					|  |  |  |             if (executableLocation.exists()) return executableLocation; |  |  |  |             if (executableLocation != null && executableLocation.exists()) return executableLocation; | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |         } |  |  |  |         } | 
			
		
	
		
		
			
				
					
					|  |  |  |         return null; |  |  |  |         return null; | 
			
		
	
		
		
			
				
					
					|  |  |  |     } |  |  |  |     } | 
			
		
	
	
		
		
			
				
					|  |  | 
 |