All without Readme and pumlid

This commit is contained in:
Aleksandar Dudukovic
2017-05-03 17:50:35 +02:00
parent 8530d01e10
commit 20062faae6
8 changed files with 147 additions and 0 deletions

View File

@ -0,0 +1,12 @@
/**
* Created by Alexis on 02-May-17.
*/
public class Thief {
protected static void steal() {
System.out.println("Steal valuable items");
}
protected static void doNothing() {
System.out.println("Pretend nothing happened and just leave");
}
}