bugfix @Activate -> @Deactivate

Change-Id: I38b4c86e20275f36e201cfa41a311c86b1dfe95f
diff --git a/core/store/dist/src/main/java/org/onlab/onos/store/service/NoSuchTableException.java b/core/store/dist/src/main/java/org/onlab/onos/store/service/NoSuchTableException.java
index fad17ce..6e02252 100644
--- a/core/store/dist/src/main/java/org/onlab/onos/store/service/NoSuchTableException.java
+++ b/core/store/dist/src/main/java/org/onlab/onos/store/service/NoSuchTableException.java
@@ -1,5 +1,6 @@
 package org.onlab.onos.store.service;
 
+
 /**
  * Exception thrown when an operation (read or write) is requested for
  * a table that does not exist.
diff --git a/core/store/dist/src/main/java/org/onlab/onos/store/service/PreconditionFailedException.java b/core/store/dist/src/main/java/org/onlab/onos/store/service/PreconditionFailedException.java
index 8a631a0..9eda528 100644
--- a/core/store/dist/src/main/java/org/onlab/onos/store/service/PreconditionFailedException.java
+++ b/core/store/dist/src/main/java/org/onlab/onos/store/service/PreconditionFailedException.java
@@ -1,5 +1,6 @@
 package org.onlab.onos.store.service;
 
+
 /**
  * Exception that indicates a precondition failure.
  * Scenarios that can cause this exception:
diff --git a/core/store/dist/src/main/java/org/onlab/onos/store/service/WriteAborted.java b/core/store/dist/src/main/java/org/onlab/onos/store/service/WriteAborted.java
index a7d3fe3..a2ebd2a 100644
--- a/core/store/dist/src/main/java/org/onlab/onos/store/service/WriteAborted.java
+++ b/core/store/dist/src/main/java/org/onlab/onos/store/service/WriteAborted.java
@@ -1,5 +1,6 @@
 package org.onlab.onos.store.service;
 
+
 /**
  * Exception that indicates a write operation is aborted.
  * Aborted operations do not mutate database state is any form.
diff --git a/core/store/dist/src/main/java/org/onlab/onos/store/service/impl/DatabaseManager.java b/core/store/dist/src/main/java/org/onlab/onos/store/service/impl/DatabaseManager.java
index a7d7075..8042cc6 100644
--- a/core/store/dist/src/main/java/org/onlab/onos/store/service/impl/DatabaseManager.java
+++ b/core/store/dist/src/main/java/org/onlab/onos/store/service/impl/DatabaseManager.java
@@ -15,6 +15,7 @@
 import net.kuujo.copycat.log.Log;
 
 import org.apache.felix.scr.annotations.Activate;
+import org.apache.felix.scr.annotations.Deactivate;
 import org.apache.felix.scr.annotations.Reference;
 import org.apache.felix.scr.annotations.ReferenceCardinality;
 import org.onlab.netty.Endpoint;
@@ -91,9 +92,10 @@
         log.info("Started.");
     }
 
-    @Activate
+    @Deactivate
     public void deactivate() {
         copycat.stop();
+        log.info("Stopped.");
     }
 
     @Override