diff options
author | Starla Insigna <hatkirby@fourisland.com> | 2009-01-24 15:25:58 -0500 |
---|---|---|
committer | Starla Insigna <hatkirby@fourisland.com> | 2009-01-24 15:25:58 -0500 |
commit | cd6b39590b8aced78fc2f6ed0c345fb9af1960c0 (patch) | |
tree | 807bc48adeb2a78a3f1d9b93f3471012509b5e51 /src/com/fourisland/fourpuzzle/gamestate/mapview/event/specialmove/MoveEvent.java | |
parent | a581d9b4136bb633771e5e881bbee5a36247b0e0 (diff) | |
download | fourpuzzle-cd6b39590b8aced78fc2f6ed0c345fb9af1960c0.tar.gz fourpuzzle-cd6b39590b8aced78fc2f6ed0c345fb9af1960c0.tar.bz2 fourpuzzle-cd6b39590b8aced78fc2f6ed0c345fb9af1960c0.zip |
Replaced checked exceptions with RuntimeException
Diffstat (limited to 'src/com/fourisland/fourpuzzle/gamestate/mapview/event/specialmove/MoveEvent.java')
-rw-r--r-- | src/com/fourisland/fourpuzzle/gamestate/mapview/event/specialmove/MoveEvent.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/fourisland/fourpuzzle/gamestate/mapview/event/specialmove/MoveEvent.java b/src/com/fourisland/fourpuzzle/gamestate/mapview/event/specialmove/MoveEvent.java index 66c9f6d..1d64d9e 100644 --- a/src/com/fourisland/fourpuzzle/gamestate/mapview/event/specialmove/MoveEvent.java +++ b/src/com/fourisland/fourpuzzle/gamestate/mapview/event/specialmove/MoveEvent.java | |||
@@ -14,6 +14,6 @@ import com.fourisland.fourpuzzle.gamestate.mapview.event.Event; | |||
14 | */ | 14 | */ |
15 | public interface MoveEvent { | 15 | public interface MoveEvent { |
16 | 16 | ||
17 | public void doAction(Event ev) throws Exception; | 17 | public void doAction(Event ev); |
18 | 18 | ||
19 | } | 19 | } |