Skip to content

Commit

Permalink
Not used string in parseXML
Browse files Browse the repository at this point in the history
  • Loading branch information
j3lte committed Nov 24, 2023
1 parent 4a6dad7 commit c0d66cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/Pastebin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export abstract class AbstractPastebin {
if (options?.parseXML) {
this.#parseXML = options.parseXML;
} else {
this.#parseXML = (xml: string): Record<string, string> => {
this.#parseXML = (_xml: string): Record<string, string> => {
throw new Error("Not implemented!");
};
}
Expand Down

0 comments on commit c0d66cb

Please sign in to comment.