Removed PUBLIC modifiers from IEvent

This commit is contained in:
WSSIA 2016-08-09 22:00:19 +01:00
parent f11597136f
commit 233f1e69f9

View File

@ -18,10 +18,10 @@ package com.iluwatar.event.asynchronous;
public interface IEvent { public interface IEvent {
public void start(); void start();
public void stop(); void stop();
public void status(); void status();
} }