src/jdk.jpackage/windows/native/libjpackage/SysInfo.h
branchJDK-8200758-branch
changeset 57909 c7de06ed4b54
parent 57444 91e9d4691e5e
--- a/src/jdk.jpackage/windows/native/libjpackage/SysInfo.h	Wed Aug 28 07:32:23 2019 -0400
+++ b/src/jdk.jpackage/windows/native/libjpackage/SysInfo.h	Wed Aug 28 11:30:40 2019 -0400
@@ -61,10 +61,12 @@
     /**
      * Retrieves the command-line arguments for the current process.
      * With IncludeProgramName option returns result similar to argv/argc.
-     * With ExcludeProgramName option program name (the 1st element of command line)
+     * With ExcludeProgramName option program name
+     *  (the 1st element of command line)
      * is excluded.
      */
-    tstring_array getCommandArgs(CommandArgProgramNameMode progNameMode = ExcludeProgramName);
+    tstring_array getCommandArgs(
+            CommandArgProgramNameMode progNameMode = ExcludeProgramName);
 
     /**
      * Returns value of environment variable with the given name.
@@ -79,7 +81,7 @@
      * other error occurred reading the value.
      */
     tstring getEnvVariable(const std::nothrow_t&, const tstring& name,
-                                            const tstring& defValue=tstring());
+            const tstring& defValue=tstring());
 
     /**
      * Returns 'true' if environment variable with the given name is set.