Skip to content

Commit

Permalink
Remove controller listeners (do not appear to be full implemented and…
Browse files Browse the repository at this point in the history
… used) (#592)
  • Loading branch information
decebals authored Dec 1, 2021
1 parent 5906228 commit 69d6823
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 223 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@ public class ControllerApplication extends Application {

private static final Logger log = LoggerFactory.getLogger(ControllerApplication.class);

private ControllerInstantiationListenerList controllerInstantiationListeners;
private ControllerInitializationListenerList controllerInitializationListeners;
private ControllerInvokeListenerList controllerInvokeListeners;

private ControllerRouteFactory controllerRouteFactory;

public ControllerApplication() {
Expand All @@ -41,30 +37,6 @@ public ControllerApplication(PippoSettings settings) {
super(settings);
}

public ControllerInstantiationListenerList getControllerInstantiationListeners() {
if (controllerInstantiationListeners == null) {
controllerInstantiationListeners = new ControllerInstantiationListenerList();
}

return controllerInstantiationListeners;
}

public ControllerInitializationListenerList getControllerInitializationListeners() {
if (controllerInitializationListeners == null) {
controllerInitializationListeners = new ControllerInitializationListenerList();
}

return controllerInitializationListeners;
}

public ControllerInvokeListenerList getControllerInvokeListeners() {
if (controllerInvokeListeners == null) {
controllerInvokeListeners = new ControllerInvokeListenerList();
}

return controllerInvokeListeners;
}

public ControllerRouteFactory getControllerRouteFactory() {
if (controllerRouteFactory == null) {
controllerRouteFactory = new DefaultControllerRouteFactory().setContentTypeEngines(getContentTypeEngines());
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

0 comments on commit 69d6823

Please sign in to comment.