File tree Expand file tree Collapse file tree 2 files changed +5
-8
lines changed
src/localcontroller/chargepoint Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Original file line number Diff line number Diff line change 55cmake_minimum_required (VERSION 3.13)
66
77project (OpenOCPP DESCRIPTION "Open Source C++ implementation of the OCPP 1.6 protocol"
8- VERSION 1.5.4
8+ VERSION 1.5.5
99)
1010
1111# Definitions for Version.h file
Original file line number Diff line number Diff line change @@ -88,14 +88,11 @@ ChargePointProxy::ChargePointProxy(const std::string&
8888/* * @brief Destructor */
8989ChargePointProxy::~ChargePointProxy ()
9090{
91- if (m_rpc->isConnected ())
92- {
93- // Disconnect from the charge point
94- m_rpc->disconnect (false );
91+ // Disconnect from the charge point
92+ m_rpc->disconnect (false );
9593
96- // Disconnect from the central system
97- m_central_system->disconnect ();
98- }
94+ // Disconnect from the central system
95+ m_central_system->disconnect ();
9996}
10097
10198// IChargePointProxy interface
You can’t perform that action at this time.
0 commit comments