From dde339cc469256de1c53eef1a2d8388790ba8f11 Mon Sep 17 00:00:00 2001 From: Blake Harnden <32446120+bharnden@users.noreply.github.com> Date: Tue, 8 Mar 2022 14:32:01 -0800 Subject: [PATCH] daemon: removed bitmap, which is not used --- daemon/core/api/grpc/wrappers.py | 1 - daemon/core/config.py | 1 - daemon/core/location/mobility.py | 1 - daemon/proto/core/api/grpc/core.proto | 11 +++++------ 4 files changed, 5 insertions(+), 9 deletions(-) diff --git a/daemon/core/api/grpc/wrappers.py b/daemon/core/api/grpc/wrappers.py index ffeb6793..c1449ff6 100644 --- a/daemon/core/api/grpc/wrappers.py +++ b/daemon/core/api/grpc/wrappers.py @@ -1093,7 +1093,6 @@ class ConfigEvent: data_types=list(proto.data_types), data_values=proto.data_values, captions=proto.captions, - bitmap=proto.bitmap, possible_values=proto.possible_values, groups=proto.groups, iface_id=proto.iface_id, diff --git a/daemon/core/config.py b/daemon/core/config.py index b705e8b6..de08649a 100644 --- a/daemon/core/config.py +++ b/daemon/core/config.py @@ -113,7 +113,6 @@ class ConfigurableOptions: """ name: Optional[str] = None - bitmap: Optional[str] = None options: List[Configuration] = [] @classmethod diff --git a/daemon/core/location/mobility.py b/daemon/core/location/mobility.py index ebcb8fe4..98249b3e 100644 --- a/daemon/core/location/mobility.py +++ b/daemon/core/location/mobility.py @@ -225,7 +225,6 @@ class WirelessModel(ConfigurableOptions): """ config_type: RegisterTlvs = RegisterTlvs.WIRELESS - bitmap: str = None position_callback: Callable[[CoreInterface], None] = None def __init__(self, session: "Session", _id: int) -> None: diff --git a/daemon/proto/core/api/grpc/core.proto b/daemon/proto/core/api/grpc/core.proto index f0cb242d..a85a364e 100644 --- a/daemon/proto/core/api/grpc/core.proto +++ b/daemon/proto/core/api/grpc/core.proto @@ -280,12 +280,11 @@ message ConfigEvent { repeated int32 data_types = 5; string data_values = 6; string captions = 7; - string bitmap = 8; - string possible_values = 9; - string groups = 10; - int32 iface_id = 11; - int32 network_id = 12; - string opaque = 13; + string possible_values = 8; + string groups = 9; + int32 iface_id = 10; + int32 network_id = 11; + string opaque = 12; } message ExceptionEvent {