Skip to content

Commit bcafa92

Browse files
authored
1 parent d12faba commit bcafa92

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

src/statusbar/leetCodeStatusBarController.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@ class LeetCodeStatusBarController implements Disposable {
2121
}
2222

2323
public updateStatusBar(status: UserStatus, user?: string): void {
24-
if (this.statusBar) {
25-
this.statusBar.updateStatusBar(status, user);
26-
}
24+
this.statusBar.updateStatusBar(status, user);
2725
}
2826

2927
public dispose(): void {

src/utils/problemUtils.ts

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) jdneo. All rights reserved.
2+
// Licensed under the MIT license.
3+
14
import kebabCase = require("lodash.kebabcase");
25
import { IProblem, langExt } from "../shared";
36

src/webview/MarkdownEngine.ts

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) jdneo. All rights reserved.
2+
// Licensed under the MIT license.
3+
14
import * as hljs from "highlight.js";
25
import * as MarkdownIt from "markdown-it";
36
import * as os from "os";

0 commit comments

Comments
 (0)