From 39a082c2aab6e38f933861ca8855184aadcd5045 Mon Sep 17 00:00:00 2001 From: ericnerdo Date: Sat, 7 May 2016 15:07:23 +0200 Subject: [PATCH] Drawer.draw() now throws IOException. --- cicaprojekt/Drawer.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cicaprojekt/Drawer.java b/cicaprojekt/Drawer.java index c275898..1c6ca3b 100644 --- a/cicaprojekt/Drawer.java +++ b/cicaprojekt/Drawer.java @@ -1,8 +1,10 @@ package cicaprojekt; +import java.io.IOException; + public interface Drawer { - public void draw(); + public void draw() throws IOException; public int getX(); public int getY(); }