From 221b71781a1efd3def76484a4a2aed76cb517f4b Mon Sep 17 00:00:00 2001 From: Narendra Pathai Date: Thu, 11 Feb 2016 12:29:35 +0530 Subject: [PATCH] Resolved checkstyle audit error --- .../src/main/java/com/iluwatar/factory/method/App.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/factory-method/src/main/java/com/iluwatar/factory/method/App.java b/factory-method/src/main/java/com/iluwatar/factory/method/App.java index 32b9c82f2..cd7a6e6e7 100644 --- a/factory-method/src/main/java/com/iluwatar/factory/method/App.java +++ b/factory-method/src/main/java/com/iluwatar/factory/method/App.java @@ -46,7 +46,7 @@ public class App { * App is unaware which concrete implementation of {@link Blacksmith} it is using. * The decision of which blacksmith implementation to use may depend on configuration, or * the type of rival in war. - * @param blacksmith + * @param blacksmith a non-null implementation of blacksmith */ public App(Blacksmith blacksmith) { this.blacksmith = blacksmith;