We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 883b804 commit 8b3b014Copy full SHA for 8b3b014
src/actions/transformations/transformation.cc
@@ -98,7 +98,7 @@ Transformation* Transformation::instantiate(std::string a) {
98
IF_MATCH(removeCommentsChar) { return new RemoveCommentsChar(a); }
99
IF_MATCH(remove_comments) { return new RemoveComments(a); }
100
IF_MATCH(removeNulls) { return new RemoveNulls(a); }
101
- IF_MATCH(remove_whitespace) { return new RemoveWhitespace(a); }
+ IF_MATCH(removeWhitespace) { return new RemoveWhitespace(a); }
102
IF_MATCH(compressWhitespace) { return new CompressWhitespace(a); }
103
IF_MATCH(replaceComments) { return new ReplaceComments(a); }
104
IF_MATCH(replaceNulls) { return new ReplaceNulls(a); }
0 commit comments