import com.seanhandley.projects.BinaryTree.IStrategy;

/**
 * 
 * Strategy object for a car.
 * 
 * Does nothing.
 * 
 * @author Sean Handley, 320097@swan.ac.uk
 * @version May 2007
 */
public class CarStrategy1 implements IStrategy<Car> {

    /**
     * Carry out operation on car.
     */
    public void compute(Car car) {
        //do nothing
    }

}