From 7f1c6c480d8149b80a2cf36a1c778fe4a9f15797 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bokros=20B=C3=A1lint?= Date: Sat, 14 May 2016 12:58:33 +0200 Subject: [PATCH] Removed unnecessary modifier --- cicaprojekt/Destroyable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cicaprojekt/Destroyable.java b/cicaprojekt/Destroyable.java index b283f1c..f171d13 100644 --- a/cicaprojekt/Destroyable.java +++ b/cicaprojekt/Destroyable.java @@ -1,5 +1,5 @@ package cicaprojekt; public interface Destroyable { - public void destroy(); + void destroy(); }