Merge "Out of Memory when static Routes are configured with unresolved next hop Root...
authorMadhu Venugopal <vmadhu@cisco.com>
Thu, 25 Jul 2013 21:48:40 +0000 (21:48 +0000)
committerGerrit Code Review <gerrit@opendaylight.org>
Thu, 25 Jul 2013 21:48:40 +0000 (21:48 +0000)
opendaylight/sal/api/src/main/java/org/opendaylight/controller/sal/core/ComponentActivatorAbstractBase.java

index 66882af5d3098d95b97fb7eee530ce57d834974c..de77837c34a1472249b7fe69cd9ac64d10ba129a 100644 (file)
@@ -152,6 +152,11 @@ abstract public class ComponentActivatorAbstractBase implements
 
         @Override
         public void stopped(Component component) {
+            // do nothing
+        }
+
+        @Override
+        public void stopping(Component component) {
             if (component == null) {
                 return;
             }
@@ -160,11 +165,6 @@ abstract public class ComponentActivatorAbstractBase implements
                     { Component.class }, {} }, new Object[][] { { component },
                     {} });
         }
-
-        @Override
-        public void stopping(Component component) {
-            // do nothing
-        }
     }
 
     /**