Improved comments on visitor pattern example.

This commit is contained in:
Ilkka Seppala
2015-01-24 23:43:35 +02:00
parent b12243b94c
commit 6e49fc01ab
7 changed files with 37 additions and 2 deletions

View File

@ -1,5 +1,10 @@
package com.iluwatar;
/**
*
* Commander
*
*/
public class Commander extends Unit {
public Commander(Unit... children) {