Skip to content
This repository has been archived by the owner on Jul 18, 2022. It is now read-only.

Commit

Permalink
fixing linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronpowell committed Jul 3, 2019
1 parent c09bdd7 commit fca8e8f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/services/extensions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ import * as vscode from "vscode";
import { ExtensionId } from "../constants";
import * as fs from "fs-extra";
import { join } from "path";
import SettingsHelper, { OsType } from "../settingsHelper";
import SettingsHelper from "../settingsHelper";
import Config from "./config";
import { promisify } from "util";
import * as child_process from "child_process";
import * as childProcess from "child_process";
import { Logger } from "./logger";

const exec = promisify(child_process.exec);
const exec = promisify(childProcess.exec);

export class ExtensionInfo {
public constructor(
Expand Down
4 changes: 2 additions & 2 deletions src/services/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ export interface Logger {
}

class OutputChannelLogger implements Logger {
show(preserveFocus?: boolean | undefined): void {
public show(preserveFocus?: boolean | undefined): void {
let oc = this.getChannel();
oc.show(preserveFocus);
}
appendLine(value: string): void {
public appendLine(value: string): void {
let oc = this.getChannel();

oc.appendLine(value);
Expand Down

0 comments on commit fca8e8f

Please # to comment.