From 4b4a0cb1c1eaf1ffe092b4d2e852b2a8cb37ec04 Mon Sep 17 00:00:00 2001 From: mountford Date: Fri, 14 Oct 2016 11:50:55 -0700 Subject: [PATCH] Fix nomulus help anachronism. list_hosts no longer differentiates between hosts by TLD. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=136180967 --- java/google/registry/tools/ListHostsCommand.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/google/registry/tools/ListHostsCommand.java b/java/google/registry/tools/ListHostsCommand.java index 34d0989e9..6d970212b 100644 --- a/java/google/registry/tools/ListHostsCommand.java +++ b/java/google/registry/tools/ListHostsCommand.java @@ -17,8 +17,8 @@ package google.registry.tools; import com.beust.jcommander.Parameters; import google.registry.tools.server.ListHostsAction; -/** Command to list all HostResource entities associated with a TLD. */ -@Parameters(separators = " =", commandDescription = "List hosts associated with a TLD.") +/** Command to list all HostResource entities in the system. */ +@Parameters(separators = " =", commandDescription = "List all hosts.") final class ListHostsCommand extends ListObjectsCommand { @Override