Skip to content

Commit fcae4ba

Browse files
committed
Merge branch 'master' of github.com:JohnstonCode/svn-scm
2 parents 4bcce17 + bd58a6a commit fcae4ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/svnFinder.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export function parseVersion(raw: string): string {
1717
}
1818

1919
export class SvnFinder {
20-
findSvn(hint: string | undefined): Promise<ISvn> {
20+
findSvn(hint?: string): Promise<ISvn> {
2121
var first = hint ? this.findSpecificSvn(hint) : Promise.reject<ISvn>(null);
2222

2323
return first
@@ -45,7 +45,7 @@ export class SvnFinder {
4545
.then(void 0, () => this.findSpecificSvn("svn"));
4646
}
4747

48-
findSystemSvnWin32(base: string): Promise<ISvn> {
48+
findSystemSvnWin32(base?: string): Promise<ISvn> {
4949
if (!base) {
5050
return Promise.reject<ISvn>("Not found");
5151
}

0 commit comments

Comments
 (0)