From 6904ba4c89663db643feb16d6398c8c9808dce10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bokros=20B=C3=A1lint?= Date: Sat, 14 May 2016 13:01:18 +0200 Subject: [PATCH] =?UTF-8?q?Removed=20unnecess=C3=ADry=20modifiers=20from?= =?UTF-8?q?=20Drawer=20interface?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cicaprojekt/Drawer.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cicaprojekt/Drawer.java b/cicaprojekt/Drawer.java index 0b2638e..da3e235 100644 --- a/cicaprojekt/Drawer.java +++ b/cicaprojekt/Drawer.java @@ -5,8 +5,8 @@ import java.io.IOException; public interface Drawer { - public void draw() throws IOException; - public int getTileX(); - public int getTileY(); - public BufferedImage getImage(); + void draw() throws IOException; + int getTileX(); + int getTileY(); + BufferedImage getImage(); }