remove unused function 45/101945/1
authorLukasz Stanislawski <l.stanislaws@samsung.com>
Fri, 2 Dec 2016 11:59:22 +0000 (12:59 +0100)
committerLukasz Stanislawski <l.stanislaws@samsung.com>
Fri, 2 Dec 2016 11:59:22 +0000 (12:59 +0100)
Change-Id: I5d028dcced87ee81133ab289f1b9eb58c75aec73

clock-tests/src/EventBusTest.cpp

index 6327ce0..7072b12 100644 (file)
@@ -33,15 +33,9 @@ class Subscriber
        public:
                Subscriber() : times_(0) {}
                int times_;
-               void OnEvent(utils::Event *e);
                void OnEvent2(utils::Event &e);
 };
 
-void Subscriber::OnEvent(utils::Event *event)
-{
-       times_++;
-}
-
 void Subscriber::OnEvent2(utils::Event &event)
 {
        times_++;