Skip to content

Commit

Permalink
Remove comments
Browse files Browse the repository at this point in the history
Signed-off-by: Leanid Astrakou <lastrakou@rocketsoftware.com>
  • Loading branch information
DivergentEuropeans committed Jun 26, 2024
1 parent 9ec8658 commit f20c239
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/services/ServiceUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ export function isValidUSSPath(path: string): boolean {

// This adds a "\n" inside Unix commands separated by ";" if char limit reached
export function parseUnixScriptByNumOfChars(script: string, charCount: number = JCL_UNIX_SCRIPT_CHARS): string {
console.log("I am being fed string '" + script + "'");
const parts: string[] = [];
let currentPart = '';
let counter = 0;
Expand Down Expand Up @@ -145,7 +144,6 @@ export function parseUnixScriptByNumOfChars(script: string, charCount: number =
if (currentPart.length > 0) {
parts.push(currentPart);
}
console.log("I am returning string '" + parts.join('') + "'");
return parts.join('');
}

Expand Down

0 comments on commit f20c239

Please sign in to comment.