Adds whitespace style changes

This commit is contained in:
Eric Amodio
2017-02-05 13:31:05 -05:00
parent 25007f7b69
commit 2b907788dd
27 changed files with 37 additions and 0 deletions

View File

@@ -16,10 +16,12 @@ export { Git, GitUri };
export * from './git/git';
class UriCacheEntry {
constructor(public uri: GitUri) { }
}
class GitCacheEntry {
blame?: ICachedBlame;
log?: ICachedLog;
@@ -44,6 +46,7 @@ enum RemoveCacheReason {
}
export default class GitProvider extends Disposable {
private _gitCache: Map<string, GitCacheEntry> | undefined;
private _cacheDisposable: Disposable | undefined;
private _repoPath: string;