Skip to content

Commit

Permalink
fix tslint
Browse files Browse the repository at this point in the history
  • Loading branch information
testforstephen committed Nov 28, 2023
1 parent b296389 commit 7dfb8dd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/explorerCommands/new.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.

import * as stringInterpolate from "fmtr";
import * as fse from "fs-extra";
import { userInfo } from "os";
import * as path from "path";
Expand All @@ -15,6 +14,9 @@ import { resourceRoots } from "../views/packageRootNode";
import { checkJavaQualifiedName } from "./utility";
import { sendError, setUserError } from "vscode-extension-telemetry-wrapper";

// tslint:disable no-var-requires
const stringInterpolate = require("fmtr");

export class JavaType {
public static readonly CLASS: JavaType = new JavaType("Class", "class", "$(symbol-class)");
public static readonly INTERFACE: JavaType = new JavaType("Interface", "interface", "$(symbol-interface)");
Expand Down

0 comments on commit 7dfb8dd

Please sign in to comment.