Skip to content

Commit

Permalink
Refs #20359: Applied suggestions.
Browse files Browse the repository at this point in the history
Signed-off-by: adriancampo <[email protected]>
  • Loading branch information
adriancampo committed Mar 18, 2024
1 parent 89046c6 commit 8fc2a86
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/main/java/com/eprosima/fastdds/fastddsgen.java
Original file line number Diff line number Diff line change
Expand Up @@ -586,8 +586,8 @@ private void showVersion()
private static final String python_bindings_arg = "-python";
private static final String replace_arg = "-replace";
private static final String temp_dir_arg = "-t";
private static final String ros2_names_arg = "-typeros2";
private static final String cnames_arg = "-typesc";
private static final String ros2_names_arg = "-typeros2";
private static final String version_arg = "-version";

/*
Expand All @@ -601,7 +601,7 @@ public static void printHelp()
{
System.out.println(m_appName + " usage:");
System.out.println("\t" + m_appName + " [options] <file> [<file> ...]");
System.out.println("\twhere the options are:");
System.out.println("\tThe available options are:");
System.out.println("\t\t" + case_sensitive_arg + ": IDL grammar apply case sensitive matching.");
System.out.println("\t\t" + output_path_arg + " <path>: sets an output directory for generated files.");
System.out.print("\t\t" + default_container_prealloc_size + ": sets the default preallocated size for ");
Expand All @@ -621,10 +621,9 @@ public static void printHelp()
}
System.out.print("\t\t" + extra_template_arg + " <template file> <output file name>: specifies a custom ");
System.out.println("template, template location must be in classpath.");
System.out.println("\t\t" + flat_output_directory_arg + ": ignore input files relative paths and place all generated files in the specified output directory.");
System.out.println("\t\t" + fusion_arg + ": activates fusion.");
System.out.print("\t\t" + flat_output_directory_arg + ": ignore input files relative paths and place all ");
System.out.println("generated files in the specified output directory.");
System.out.println("\t\t" + fusion_arg + ": activates fusion.");
System.out.println("\t\t" + help_arg + ": shows this help");
System.out.println("\t\t" + include_path_arg + " <path>: add directory to preprocessor include paths.");
System.out.println("\t\t" + language_arg + " <lang>: chooses between <c++> or <java> languages.");
Expand All @@ -649,7 +648,7 @@ public static void printHelp()
public static void printEnhacedHelp()
{
printHelp();
System.out.println("\tand the extra developer options are:");
System.out.println("\tThe extra developer options are:");
System.out.println("\t\t" + generate_api_arg + ": apply rules to generate internal API.");
System.out.println("\t\t" + execute_test_arg + ": executes FastDDSGen tests.");
}
Expand Down

0 comments on commit 8fc2a86

Please sign in to comment.