Revert "Make sure group is added before pushing punt table flow" due to the reason described in CORD-3241

This reverts commit f438bb68840b66dcee4aa4b0cc9c0056b4a544a8.

Change-Id: I710cbce0ccf76ac7c12de0a2ff1847052094bd58
diff --git a/drivers/default/src/main/java/org/onosproject/driver/pipeline/ofdpa/OvsOfdpaPipeline.java b/drivers/default/src/main/java/org/onosproject/driver/pipeline/ofdpa/OvsOfdpaPipeline.java
index 3245583..f192ec9 100644
--- a/drivers/default/src/main/java/org/onosproject/driver/pipeline/ofdpa/OvsOfdpaPipeline.java
+++ b/drivers/default/src/main/java/org/onosproject/driver/pipeline/ofdpa/OvsOfdpaPipeline.java
@@ -1296,7 +1296,7 @@
                 // this can happen outside of the lock but I think it is safer
                 // to include it here.
                 Group group = groupService.getGroup(deviceId, popVlanPuntGroupKey());
-                if (group != null && group.state() == Group.GroupState.ADDED) {
+                if (group != null) {
                     log.debug("PopVlanPuntGroupChecker: Installing {} missing rules at punt table.",
                               flowRuleQueue.size());