Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Commit e26ac14

Browse files
committed
SystemClass: remove useless overridden init() method
The overridden implementation was only calling the base implementation. It can therefore can be completely removed as it is the default behaviour. Change-Id: Ic0eadf82abfdaad0ca76d3e9a757544d5ec31427 Signed-off-by: David Wagner <[email protected]>
1 parent 17bacca commit e26ac14

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

parameter/SystemClass.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -309,8 +309,3 @@ void CSystemClass::cleanSubsystemsNeedToResync()
309309
pSubsystem->needResync(true);
310310
}
311311
}
312-
313-
bool CSystemClass::init(string& strError)
314-
{
315-
return base::init(strError);
316-
}

parameter/SystemClass.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ class CSystemClass : public CConfigurableElement
7272
void cleanSubsystemsNeedToResync();
7373

7474
// base
75-
virtual bool init(std::string& strError);
7675
virtual std::string getKind() const;
7776

7877
private:

0 commit comments

Comments
 (0)