Skip to content

Commit ebbd4c1

Browse files
committed
Removed unused static function
1 parent 6917f0a commit ebbd4c1

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

src/job.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,6 @@ const shell = process.env.EXEPATH ? `${process.env.EXEPATH}/bash.exe` : "/bin/ba
66

77
export class Job {
88

9-
private static getScriptLikesFromData(jobData: any, keyname: string): string[] | null {
10-
const sc = jobData[keyname];
11-
if (sc) {
12-
let scripts: string[] = [];
13-
scripts = scripts.concat(sc);
14-
return scripts;
15-
}
16-
return null;
17-
}
18-
199
public readonly stage: string;
2010
public readonly name: string;
2111

0 commit comments

Comments
 (0)