Skip to content

Commit 2e90584

Browse files
committed
remove console.log and unused functions
1 parent baef5ae commit 2e90584

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

src/saxonTaskProvider.ts

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,6 @@ export class SaxonTaskProvider implements vscode.TaskProvider {
7676
}
7777
});
7878
const jsonString = jsonTaskLines.join('\n');
79-
console.log(jsonString);
80-
8179
tasksObject = JSON.parse(jsonString);
8280

8381
} else {
@@ -217,23 +215,4 @@ export class SaxonTaskProvider implements vscode.TaskProvider {
217215
return undefined;
218216
}
219217
}
220-
221-
public static escapeString(text: string) {
222-
if (typeof text === 'string') {
223-
const result = text;
224-
return '"' + text + '"';
225-
} else {
226-
return text;
227-
}
228-
}
229-
230-
public static escapeString2(text: string) {
231-
if (typeof text === 'string') {
232-
const result = text.replace(/\s/, '\ ');
233-
console.log(result);
234-
return '"' + text + '"';
235-
} else {
236-
return text;
237-
}
238-
}
239218
}

0 commit comments

Comments
 (0)