|  | @@ -47,8 +47,10 @@ public class ConsListImpl<E> extends Cons<E, ConsList<E>> implements ConsList<E>
 | 
	
		
			
				|  |  |  	}
 | 
	
		
			
				|  |  |  	
 | 
	
		
			
				|  |  |  	private ConsList<E> appendRec(E e, ConsList<E> list) {
 | 
	
		
			
				|  |  | -		if(list == null || list.isEmpty()) {
 | 
	
		
			
				|  |  | +		if(list == null) {
 | 
	
		
			
				|  |  |  			return new ConsListImpl<>(e, null);
 | 
	
		
			
				|  |  | +		} else if(list.isEmpty()) {
 | 
	
		
			
				|  |  | +			return new ConsListImpl<>(e, list);
 | 
	
		
			
				|  |  |  		}
 | 
	
		
			
				|  |  |  		return new ConsListImpl<>(list.car(), this.appendRec(e, list.cdr()));
 | 
	
		
			
				|  |  |  	}
 |