Removing the subscriber when an ONU device is disabled

Change-Id: I123b47b679a99d35642da41728743447d533da54
diff --git a/app/src/main/java/org/opencord/olt/impl/Olt.java b/app/src/main/java/org/opencord/olt/impl/Olt.java
index 60d9e5d..28a48d9 100644
--- a/app/src/main/java/org/opencord/olt/impl/Olt.java
+++ b/app/src/main/java/org/opencord/olt/impl/Olt.java
@@ -1543,10 +1543,7 @@
                         break;
                     case PORT_REMOVED:
                         if (isUniPort(dev, port)) {
-                            if (port.isEnabled()) {
-                                removeSubscriber(new ConnectPoint(devId, port.number()));
-                            }
-
+                            removeSubscriber(new ConnectPoint(devId, port.number()));
                             post(new AccessDeviceEvent(AccessDeviceEvent.Type.UNI_REMOVED, devId, port));
                         }