Explorar el Código

Removes unneeded overload

main
Eric Amodio hace 2 años
padre
commit
f943e8a36c
Se han modificado 1 ficheros con 1 adiciones y 4 borrados
  1. +1
    -4
      src/git/gitProviderService.ts

+ 1
- 4
src/git/gitProviderService.ts Ver fichero

@ -1889,10 +1889,7 @@ export class GitProviderService implements Disposable {
return provider.getOrOpenScmRepository(path);
}
static getEncoding(repoPath: string, fileName: string): string;
static getEncoding(uri: Uri): string;
static getEncoding(repoPathOrUri: string | Uri, fileName?: string): string {
const uri = typeof repoPathOrUri === 'string' ? GitUri.resolveToUri(fileName!, repoPathOrUri) : repoPathOrUri;
static getEncoding(uri: Uri): string {
const encoding = configuration.getAny<string>('files.encoding', uri);
return encoding != null && encodingExists(encoding) ? encoding : 'utf8';
}

Cargando…
Cancelar
Guardar