Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 23814e1

Browse filesBrowse files
fixing the formating for java windows
1 parent db3f0c6 commit 23814e1
Copy full SHA for 23814e1

1 file changed

+6-1Lines changed: 6 additions & 1 deletion

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
  • page-object/sample-application/src/main/java/com/iluwatar/pageobject
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎page-object/sample-application/src/main/java/com/iluwatar/pageobject/App.java‎

Copy file name to clipboardExpand all lines: page-object/sample-application/src/main/java/com/iluwatar/pageobject/App.java
+6-1Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,12 @@ public static void main(String[] args) {
8383
ProcessBuilder pb;
8484
if (os.contains("win")) {
8585
// Standard Windows location since Windows NT
86-
pb = new ProcessBuilder("C:\\Windows\\System32\\cmd.exe", "/c", "start", applicationFile.getAbsolutePath());
86+
pb =
87+
new ProcessBuilder(
88+
"C:\\Windows\\System32\\cmd.exe",
89+
"/c",
90+
"start",
91+
applicationFile.getAbsolutePath());
8792
} else if (os.contains("mac")) {
8893
// Standard macOS location for 'open' command
8994
pb = new ProcessBuilder("/usr/bin/open", applicationFile.getAbsolutePath());

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.