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;
/**
*
* Abstract base class for tasks
*
*/
public abstract class Task {
private static int nextId = 1;