Skip to content

Commit e37d65a

Browse files
Renamed NGHandler to NGJettyHandler
1 parent b9ca440 commit e37d65a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

ng-adaptor-jetty/src/main/java/ng/adaptor/jetty/NGAdaptorJetty.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public void start( NGApplication application ) {
8181
final ServerConnector connector = new ServerConnector( server, connectionFactory );
8282
connector.setPort( port );
8383
server.addConnector( connector );
84-
server.setHandler( new NGHandler( application ) );
84+
server.setHandler( new NGJettyHandler( application ) );
8585

8686
// FIXME: Temporary lifecycle event. Probably removed once we have a stable application initialization cycle // Hugi 2025-10-02
8787
server.addBean( new LifeCycle.Listener() {
@@ -108,11 +108,11 @@ public void lifeCycleStarted( LifeCycle event ) {
108108
}
109109
}
110110

111-
public static class NGHandler extends Handler.Abstract {
111+
public static class NGJettyHandler extends Handler.Abstract {
112112

113113
private final NGApplication _application;
114114

115-
public NGHandler( NGApplication application ) {
115+
public NGJettyHandler( NGApplication application ) {
116116
_application = application;
117117
}
118118

0 commit comments

Comments
 (0)