mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-15 08:59:01 +00:00
Formatted all files to the same standard
This commit is contained in:
@@ -3,14 +3,14 @@ package com.iluwatar;
|
||||
/**
|
||||
*
|
||||
* Template Method base class.
|
||||
*
|
||||
*
|
||||
*/
|
||||
public abstract class StealingMethod {
|
||||
|
||||
protected abstract String pickTarget();
|
||||
|
||||
|
||||
protected abstract void confuseTarget(String target);
|
||||
|
||||
|
||||
protected abstract void stealTheItem(String target);
|
||||
|
||||
public void steal() {
|
||||
|
||||
Reference in New Issue
Block a user