Skip to content

Commit fb53e2d

Browse files
committed
Fix Feature cross-over in FirmwareManagementProfile
1 parent 7cb92ba commit fb53e2d

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

ocpp-v1_6/src/main/java/eu/chargetime/ocpp/feature/profile/ClientFirmwareManagementProfile.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ public class ClientFirmwareManagementProfile implements Profile {
4141
public ClientFirmwareManagementProfile(ClientFirmwareManagementEventHandler eventHandler) {
4242
this.eventHandler = eventHandler;
4343
features = new HashSet<>();
44-
features.add(new DiagnosticsStatusNotificationFeature(this));
45-
features.add(new FirmwareStatusNotificationFeature(this));
4644
features.add(new GetDiagnosticsFeature(this));
4745
features.add(new UpdateFirmwareFeature(this));
4846
}

ocpp-v1_6/src/main/java/eu/chargetime/ocpp/feature/profile/ServerFirmwareManagementProfile.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,8 @@ public class ServerFirmwareManagementProfile implements Profile {
4545
public ServerFirmwareManagementProfile(ServerFirmwareManagementEventHandler eventHandler) {
4646
this.eventHandler = eventHandler;
4747
features = new HashSet<>();
48-
features.add(new GetDiagnosticsFeature(this));
4948
features.add(new DiagnosticsStatusNotificationFeature(this));
5049
features.add(new FirmwareStatusNotificationFeature(this));
51-
features.add(new UpdateFirmwareFeature(this));
5250
}
5351

5452
@Override

0 commit comments

Comments
 (0)