FELIX-4460 Properly stop the server using the stopJetty method

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1579739 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/http/jetty/src/main/java/org/apache/felix/http/jetty/internal/JettyService.java b/http/jetty/src/main/java/org/apache/felix/http/jetty/internal/JettyService.java
index c28b089..3413c26 100644
--- a/http/jetty/src/main/java/org/apache/felix/http/jetty/internal/JettyService.java
+++ b/http/jetty/src/main/java/org/apache/felix/http/jetty/internal/JettyService.java
@@ -276,14 +276,7 @@
             }
             else
             {
-                try
-                {
-                    this.server.stop();
-                }
-                catch (Exception e)
-                {
-                    // should log
-                }
+                this.stopJetty();
                 SystemLogger.error("Jetty stopped (no connectors available)", null);
             }
         }