Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix the tab issue
  • Loading branch information
Ghufz committed May 5, 2020
commit 5372b5ae8adb29e532afb3d45f51571b6a171127
Original file line number Diff line number Diff line change
Expand Up @@ -629,8 +629,8 @@ public void processOpts() {
@SuppressWarnings("static-method")
@Override
public String escapeText(String input) {
if (input == null) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll remove these empty spaces in my next PR to the PowerShell generator

if (input == null) {
return input;
}

Expand All @@ -646,7 +646,7 @@ public String escapeText(String input) {
.replaceAll("[\\t\\n\\r]", " ")
.replace("\\", "\\\\")
.replace("\"", "\"\""));
}

@Override
Expand Down