From 51208f0edccaab8efabeeb8ab91eeb6eee0a5bfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milie=20Feral?= Date: Wed, 24 Oct 2018 10:33:11 +0200 Subject: [PATCH] [shared] Remove useless method wrongly implemented --- apps/shared/storage_function.cpp | 5 ----- apps/shared/storage_function.h | 3 --- 2 files changed, 8 deletions(-) diff --git a/apps/shared/storage_function.cpp b/apps/shared/storage_function.cpp index f56d96913..36d3072ed 100644 --- a/apps/shared/storage_function.cpp +++ b/apps/shared/storage_function.cpp @@ -28,11 +28,6 @@ bool StorageFunction::BaseNameCompliant(const char * baseName) { return true; } -uint32_t StorageFunction::checksum() { - assert(!isNull()); - return checksum(); -} - bool StorageFunction::isActive() const { return recordData()->isActive(); } diff --git a/apps/shared/storage_function.h b/apps/shared/storage_function.h index e7ca887bf..858adc1f2 100644 --- a/apps/shared/storage_function.h +++ b/apps/shared/storage_function.h @@ -16,9 +16,6 @@ public: // Constructors StorageFunction(Ion::Storage::Record record) : StorageExpressionModel(record){} - // Checksum - virtual uint32_t checksum(); - // Properties bool isActive() const; KDColor color() const;