Skip to content

Commit 0a34018

Browse files
committedApr 6, 2023
8305680: Remove Permissions from jcmd help output
Reviewed-by: cjplummer, sspitsyn
1 parent 8db1dd0 commit 0a34018

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed
 

‎src/hotspot/share/services/diagnosticCommand.cpp

-10
Original file line numberDiff line numberDiff line change
@@ -193,16 +193,6 @@ void HelpDCmd::execute(DCmdSource source, TRAPS) {
193193
factory->is_enabled() ? "" : " [disabled]");
194194
output()->print_cr("%s", factory->description());
195195
output()->print_cr("\nImpact: %s", factory->impact());
196-
JavaPermission p = factory->permission();
197-
if(p._class != nullptr) {
198-
if(p._action != nullptr) {
199-
output()->print_cr("\nPermission: %s(%s, %s)",
200-
p._class, p._name == nullptr ? "null" : p._name, p._action);
201-
} else {
202-
output()->print_cr("\nPermission: %s(%s)",
203-
p._class, p._name == nullptr ? "null" : p._name);
204-
}
205-
}
206196
output()->cr();
207197
cmd = factory->create_resource_instance(output());
208198
if (cmd != nullptr) {

0 commit comments

Comments
 (0)
Please sign in to comment.