File tree Expand file tree Collapse file tree 1 file changed +0
-21
lines changed Expand file tree Collapse file tree 1 file changed +0
-21
lines changed Original file line number Diff line number Diff line change @@ -76,8 +76,6 @@ export class SaxonTaskProvider implements vscode.TaskProvider {
76
76
}
77
77
} ) ;
78
78
const jsonString = jsonTaskLines . join ( '\n' ) ;
79
- console . log ( jsonString ) ;
80
-
81
79
tasksObject = JSON . parse ( jsonString ) ;
82
80
83
81
} else {
@@ -217,23 +215,4 @@ export class SaxonTaskProvider implements vscode.TaskProvider {
217
215
return undefined ;
218
216
}
219
217
}
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
- }
239
218
}
You can’t perform that action at this time.
0 commit comments