Work on #385, added documentation and class diagram. Made refactoring changes to pass checkstyle and PMD checks

This commit is contained in:
Narendra Pathai
2016-03-16 12:40:46 +05:30
parent 7aff77ab27
commit c78dd2667a
8 changed files with 106 additions and 18 deletions

View File

@@ -20,6 +20,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package com.iluwatar.mute;
/**
@@ -32,5 +33,5 @@ public interface CheckedRunnable {
* Same as {@link Runnable#run()} with a possibility of exception in execution.
* @throws Exception if any exception occurs.
*/
public void run() throws Exception;
void run() throws Exception;
}