Skip to content

Commit dd4716a

Browse files
author
Anthony Staples
committed
Remove unneeded comments
1 parent cd3fe04 commit dd4716a

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/WorkerIndexing/BindingInformation.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,7 @@ internal string ConvertToRpcRawBinding(out BindingInfo bindingInfo)
4343

4444
foreach (KeyValuePair<string, Object> pair in otherInformation)
4545
{
46-
// Wow this sucks, lots of overserialization
4746
rawBindingObject.Add(pair.Key, JToken.FromObject(pair.Value));
48-
//Console.WriteLine(pair.Key);
4947
}
5048

5149
rawBinding = JsonConvert.SerializeObject(rawBindingObject);

src/WorkerIndexing/WorkerIndexingHelper.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Microsoft.Azure.Functions.PowerShellWorker.WorkerIndexing
1414
{
1515
internal class WorkerIndexingHelper
1616
{
17-
const string GetFunctionsMetadataCmdletName = "Get-FunctionsMetadata";
17+
const string GetFunctionsMetadataCmdletName = "AzureFunctions.PowerShell.SDK\\Get-FunctionsMetadata";
1818
internal static IEnumerable<RpcFunctionMetadata> IndexFunctions(string baseDir)
1919
{
2020
List<RpcFunctionMetadata> indexedFunctions = new List<RpcFunctionMetadata>();
@@ -34,7 +34,6 @@ internal static IEnumerable<RpcFunctionMetadata> IndexFunctions(string baseDir)
3434
throw new Exception(PowerShellWorkerStrings.GetFunctionsMetadataMultipleResultsError);
3535
}
3636
outputString = rawMetadata.ToString();
37-
//Console.WriteLine(rawMetadata.ToString());
3837
}
3938
ps.Commands.Clear();
4039

0 commit comments

Comments
 (0)