Преглед изворни кода

Removes unnecessary public

main
Eric Amodio пре 7 година
родитељ
комит
e7fedb3c51
7 измењених фајлова са 7 додато и 7 уклоњено
  1. +1
    -1
      src/commands/closeUnchangedFiles.ts
  2. +1
    -1
      src/commands/copyMessageToClipboard.ts
  3. +1
    -1
      src/commands/copyShaToClipboard.ts
  4. +1
    -1
      src/commands/diffDirectory.ts
  5. +1
    -1
      src/commands/openChangedFiles.ts
  6. +1
    -1
      src/commands/showQuickRepoHistory.ts
  7. +1
    -1
      src/commands/showQuickRepoStatus.ts

+ 1
- 1
src/commands/closeUnchangedFiles.ts Прегледај датотеку

@ -9,7 +9,7 @@ import * as path from 'path';
export class CloseUnchangedFilesCommand extends ActiveEditorCommand {
constructor(private git: GitProvider, public repoPath: string) {
constructor(private git: GitProvider, private repoPath: string) {
super(Commands.CloseUnchangedFiles);
}

+ 1
- 1
src/commands/copyMessageToClipboard.ts Прегледај датотеку

@ -8,7 +8,7 @@ import { copy } from 'copy-paste';
export class CopyMessageToClipboardCommand extends ActiveEditorCommand {
constructor(private git: GitProvider, public repoPath: string) {
constructor(private git: GitProvider, private repoPath: string) {
super(Commands.CopyMessageToClipboard);
}

+ 1
- 1
src/commands/copyShaToClipboard.ts Прегледај датотеку

@ -8,7 +8,7 @@ import { copy } from 'copy-paste';
export class CopyShaToClipboardCommand extends ActiveEditorCommand {
constructor(private git: GitProvider, public repoPath: string) {
constructor(private git: GitProvider, private repoPath: string) {
super(Commands.CopyShaToClipboard);
}

+ 1
- 1
src/commands/diffDirectory.ts Прегледај датотеку

@ -6,7 +6,7 @@ import { Logger } from '../logger';
export class DiffDirectoryCommand extends ActiveEditorCommand {
constructor(private git: GitProvider, public repoPath: string) {
constructor(private git: GitProvider, private repoPath: string) {
super(Commands.DiffDirectory);
}

+ 1
- 1
src/commands/openChangedFiles.ts Прегледај датотеку

@ -7,7 +7,7 @@ import * as path from 'path';
export class OpenChangedFilesCommand extends ActiveEditorCommand {
constructor(private git: GitProvider, public repoPath: string) {
constructor(private git: GitProvider, private repoPath: string) {
super(Commands.OpenChangedFiles);
}

+ 1
- 1
src/commands/showQuickRepoHistory.ts Прегледај датотеку

@ -7,7 +7,7 @@ import { CommandQuickPickItem, RepoHistoryQuickPick } from '../quickPicks';
export class ShowQuickRepoHistoryCommand extends ActiveEditorCommand {
constructor(private git: GitProvider, public repoPath: string) {
constructor(private git: GitProvider, private repoPath: string) {
super(Commands.ShowQuickRepoHistory);
}

+ 1
- 1
src/commands/showQuickRepoStatus.ts Прегледај датотеку

@ -7,7 +7,7 @@ import { CommandQuickPickItem, RepoStatusQuickPick } from '../quickPicks';
export class ShowQuickRepoStatusCommand extends ActiveEditorCommand {
constructor(private git: GitProvider, public repoPath: string) {
constructor(private git: GitProvider, private repoPath: string) {
super(Commands.ShowQuickRepoStatus);
}

Loading…
Откажи
Сачувај