From dfe2d3482281c90d91e9e42aeb01993a958b1320 Mon Sep 17 00:00:00 2001 From: Adam M Rivera Date: Wed, 25 Apr 2012 12:33:33 -0500 Subject: [PATCH] ParameterMetaDataParser.cs: Updated name of method to be more accurate to its purpose. --- .../Utilities/ParameterMetaDataParser.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Tools/ArdupilotMegaPlanner/Utilities/ParameterMetaDataParser.cs b/Tools/ArdupilotMegaPlanner/Utilities/ParameterMetaDataParser.cs index 50a725698a..5554bbce73 100644 --- a/Tools/ArdupilotMegaPlanner/Utilities/ParameterMetaDataParser.cs +++ b/Tools/ArdupilotMegaPlanner/Utilities/ParameterMetaDataParser.cs @@ -41,7 +41,7 @@ namespace ArdupilotMega.Utilities // Read and parse the content. string dataFromAddress = ReadDataFromAddress(parameterLocation); - ParseLibInformation(dataFromAddress, objXmlTextWriter, parameterLocation); + ParseGroupInformation(dataFromAddress, objXmlTextWriter, parameterLocation); ParseParameterInformation(dataFromAddress, objXmlTextWriter); // Write the end element for this parameter location @@ -58,12 +58,12 @@ namespace ArdupilotMega.Utilities } /// - /// Parses the lib information. + /// Parses the group parameter information. /// /// The file contents. /// The obj XML text writer. /// The parameter location. - private static void ParseLibInformation(string fileContents, XmlTextWriter objXmlTextWriter, string parameterLocation) + private static void ParseGroupInformation(string fileContents, XmlTextWriter objXmlTextWriter, string parameterLocation) { var parsedInformation = ParseKeyValuePairs(fileContents, ParameterMetaDataConstants.Group); if (parsedInformation != null && parsedInformation.Count > 0)