Added code comments.

This commit is contained in:
Ilkka Seppala
2015-05-17 21:45:20 +03:00
parent 6e76227143
commit 8b8b81f26d
5 changed files with 44 additions and 0 deletions

View File

@ -1,5 +1,10 @@
package com.iluwatar;
/**
*
* Worker implements Runnable and thus can be executed by ExecutorService
*
*/
public class Worker implements Runnable {
private Task task;