From 857df6a38400ec6fd284a236fb8244165e93a35f Mon Sep 17 00:00:00 2001 From: jonsequitur Date: Wed, 22 Mar 2017 15:47:54 -0700 Subject: [PATCH] remove unused variable --- src/dotnet/commands/dotnet-complete/CompleteCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dotnet/commands/dotnet-complete/CompleteCommand.cs b/src/dotnet/commands/dotnet-complete/CompleteCommand.cs index d188171ac..a6061d37d 100644 --- a/src/dotnet/commands/dotnet-complete/CompleteCommand.cs +++ b/src/dotnet/commands/dotnet-complete/CompleteCommand.cs @@ -31,7 +31,7 @@ namespace Microsoft.DotNet.Cli Console.WriteLine(suggestion); } } - catch (Exception e) + catch (Exception) { return 1; }