diff --git a/sop-java-picocli/src/main/java/sop/cli/picocli/commands/ListProfilesCmd.java b/sop-java-picocli/src/main/java/sop/cli/picocli/commands/ListProfilesCmd.java index be271e6..5b7aa4c 100644 --- a/sop-java-picocli/src/main/java/sop/cli/picocli/commands/ListProfilesCmd.java +++ b/sop-java-picocli/src/main/java/sop/cli/picocli/commands/ListProfilesCmd.java @@ -6,6 +6,7 @@ package sop.cli.picocli.commands; import picocli.CommandLine; import sop.Profile; +import sop.cli.picocli.Print; import sop.cli.picocli.SopCLI; import sop.exception.SOPGPException; import sop.operation.ListProfiles; @@ -25,9 +26,7 @@ public class ListProfilesCmd extends AbstractSopCmd { try { for (Profile profile : listProfiles.subcommand(subcommand)) { - // CHECKSTYLE:OFF - System.out.println(profile); - // CHECKSTYLE:ON + Print.outln(profile.toString()); } } catch (SOPGPException.UnsupportedProfile e) { String errorMsg = getMsg("sop.error.feature_support.subcommand_does_not_support_profiles", subcommand);