From bc27bb65be09e96e396407873868d52d00fef53a Mon Sep 17 00:00:00 2001 From: "Leo Lee (DEVDIV)" Date: Sun, 8 Feb 2015 11:23:02 -0800 Subject: [PATCH] 1 more stylecop fix --- src/taco-utils/taco-utils.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/taco-utils/taco-utils.ts b/src/taco-utils/taco-utils.ts index 753dae37..45fd63de 100644 --- a/src/taco-utils/taco-utils.ts +++ b/src/taco-utils/taco-utils.ts @@ -56,7 +56,7 @@ module TacoUtility { } } - /** + /** * for quick logging use */ export function logLine(msg: string, level: Level): void { @@ -122,7 +122,7 @@ module TacoUtility { * Factory to create new Commands classes * initialize with json file containing commands */ - public static init(commandsInfoPath: string) { + public static init(commandsInfoPath: string): void { commandsInfoPath = path.resolve(commandsInfoPath); if (!fs.existsSync(commandsInfoPath)) { throw new Error(ResourcesManager.getString("taco-utils.exception.listingfile")); @@ -131,7 +131,7 @@ module TacoUtility { CommandFactory.Listings = require(commandsInfoPath); } - /** + /** * get specific task object, given task name */ public static getTask(name: string, inputArgs: string[]): ICommand {