Skip to content

Commit a294bf4

Browse files
author
Shailesh M. Pachbhai
committed
feat: fix the method param
1 parent 26ab3ae commit a294bf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/lwcparser/xmlParser/XmlFileParser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { XmlParser } from '../xmlParser/XmlParser';
55
export class XmlFileParser implements FileParser {
66
parse(filePath: string, namespace: string): Map<string, string> {
77
const xmlParser = new XmlParser(filePath);
8-
return xmlParser.removeNode(namespace);
8+
return xmlParser.removeNode(namespace, namespace);
99
}
1010

1111
saveToFile(filePath: string, content: string | undefined): void {

0 commit comments

Comments
 (0)