checkstyle

This commit is contained in:
jendave
2011-10-26 19:54:25 +00:00
parent d12136f714
commit c8140b3c2e
9 changed files with 502 additions and 436 deletions

View File

@@ -4,5 +4,12 @@ package net.slightlymagic.braids.util;
* Like Runnable, but it can throw any Exception.
*/
public interface ClumsyRunnable {
public void run() throws Exception;
/**
* Run.
*
* @throws Exception
* the exception
*/
void run() throws Exception;
}