fix must override a superclass method (#919)
* fix must override a superclass method * fix must override a superclass method
This commit is contained in:
		
				
					committed by
					
						 Ilkka Seppälä
						Ilkka Seppälä
					
				
			
			
				
	
			
			
			
						parent
						
							35dc25d480
						
					
				
				
					commit
					c653edf38f
				
			| @@ -33,10 +33,12 @@ public class ConfigureForDosVisitor implements AllModemVisitor { | ||||
|  | ||||
|   private static final Logger LOGGER = LoggerFactory.getLogger(ConfigureForDosVisitor.class); | ||||
|  | ||||
|   @Override | ||||
|   public void visit(Hayes hayes) { | ||||
|     LOGGER.info(hayes + " used with Dos configurator."); | ||||
|   } | ||||
|  | ||||
|   @Override | ||||
|   public void visit(Zoom zoom) { | ||||
|     LOGGER.info(zoom + " used with Dos configurator."); | ||||
|   } | ||||
|   | ||||
| @@ -34,6 +34,7 @@ public class ConfigureForUnixVisitor implements ZoomVisitor { | ||||
|  | ||||
|   private static final Logger LOGGER = LoggerFactory.getLogger(ConfigureForUnixVisitor.class); | ||||
|  | ||||
|   @Override | ||||
|   public void visit(Zoom zoom) { | ||||
|     LOGGER.info(zoom + " used with Unix configurator."); | ||||
|   } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user