File tree 4 files changed +5
-9
lines changed
4 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { SvnUriAction } from "../common/types";
4
4
import { Repository } from "../repository" ;
5
5
import { toSvnUri } from "../uri" ;
6
6
import { Command } from "./command" ;
7
- import * as nls from ' vscode-nls' ;
7
+ import * as nls from " vscode-nls" ;
8
8
9
9
const localize = nls . loadMessageBundle ( ) ;
10
10
Original file line number Diff line number Diff line change @@ -23,9 +23,7 @@ export class SearchLogByRevision extends Command {
23
23
24
24
const revision = parseInt ( input , 10 ) ;
25
25
if ( ! revision || ! / ^ \+ ? ( 0 | [ 1 - 9 ] \d * ) $ / . test ( input ) ) {
26
- window . showErrorMessage (
27
- localize ( "invalid_revision" , "Invalid revision" )
28
- ) ;
26
+ window . showErrorMessage ( localize ( "invalid_revision" , "Invalid revision" ) ) ;
29
27
return ;
30
28
}
31
29
@@ -42,9 +40,7 @@ export class SearchLogByRevision extends Command {
42
40
await commands . executeCommand < void > ( "vscode.open" , uri ) ;
43
41
} catch ( error ) {
44
42
console . error ( error ) ;
45
- window . showErrorMessage (
46
- localize ( "unable_to_log" , "Unable to log" )
47
- ) ;
43
+ window . showErrorMessage ( localize ( "unable_to_log" , "Unable to log" ) ) ;
48
44
}
49
45
}
50
46
}
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { Repository } from "../../repository";
4
4
import { Resource } from "../../resource" ;
5
5
import { getIconUri } from "../../uri" ;
6
6
import BaseNode from "./baseNode" ;
7
- import * as nls from ' vscode-nls' ;
7
+ import * as nls from " vscode-nls" ;
8
8
9
9
const localize = nls . loadMessageBundle ( ) ;
10
10
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { getIconUri } from "../../uri";
4
4
import BaseNode from "./baseNode" ;
5
5
import IncomingChangeNode from "./incomingChangeNode" ;
6
6
import NoIncomingChangesNode from "./noIncomingChangesNode" ;
7
- import * as nls from ' vscode-nls' ;
7
+ import * as nls from " vscode-nls" ;
8
8
9
9
const localize = nls . loadMessageBundle ( ) ;
10
10
You can’t perform that action at this time.
0 commit comments