mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-15 06:58:41 +00:00
Formatted all files to the same standard
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
package com.iluwatar;
|
||||
|
||||
public abstract class RequestHandler {
|
||||
|
||||
|
||||
private RequestHandler next;
|
||||
|
||||
public RequestHandler(RequestHandler next) {
|
||||
this.next = next;
|
||||
}
|
||||
|
||||
|
||||
public void handleRequest(Request req) {
|
||||
if (next != null) {
|
||||
next.handleRequest(req);
|
||||
|
||||
Reference in New Issue
Block a user