Removed PUBLIC modifiers from IEvent

This commit is contained in:
WSSIA
2016-09-03 11:32:31 +01:00
parent f11597136f
commit 233f1e69f9
@@ -18,10 +18,10 @@ package com.iluwatar.event.asynchronous;
public interface IEvent {
public void start();
void start();
public void stop();
void stop();
public void status();
void status();
}