Refactor: move strategies in a package, other minor modification
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
package notificationSendingStrategies;
|
||||
|
||||
public class FastSendNotificationStrategy implements SendNotificationStrategy {
|
||||
@Override
|
||||
public String makeContent(String message) {
|
||||
return message;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user