Messed up indexes #324

This commit is contained in:
Joseph McCarthy 2015-12-28 22:12:11 +00:00
parent 41593774c6
commit 749880e3b9

View File

@ -1,21 +0,0 @@
package com.iluwatar.delegation.simple.printers;
import com.iluwatar.delegation.simple.Printer;
/**
* Specialised Implementation of {@link Printer} for a HP Printer, in
* this case the message to be printed is appended to "HP Printer : "
*
* @see Printer
*/
public class HpPrinter implements Printer {
/**
* {@inheritDoc}
*/
@Override
public void print(String message) {
System.out.println("HP Printer : " + message);
}
}