From a6fced64df8f02dab9f097e7ac63b671fe54909e Mon Sep 17 00:00:00 2001 From: Tom Poole Date: Wed, 18 Aug 2021 09:51:34 +0100 Subject: [PATCH] Remove some outdated documentation --- modules/juce_core/xml/juce_XmlDocument.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/juce_core/xml/juce_XmlDocument.h b/modules/juce_core/xml/juce_XmlDocument.h index ebc554debd..92918ed325 100644 --- a/modules/juce_core/xml/juce_XmlDocument.h +++ b/modules/juce_core/xml/juce_XmlDocument.h @@ -134,14 +134,12 @@ public: //============================================================================== /** A handy static method that parses a file. This is a shortcut for creating an XmlDocument object and calling getDocumentElement() on it. - An even better shortcut is the juce::parseXML() function, which returns a std::unique_ptr! @returns a new XmlElement, or nullptr if there was an error. */ static std::unique_ptr parse (const File& file); /** A handy static method that parses some XML data. This is a shortcut for creating an XmlDocument object and calling getDocumentElement() on it. - An even better shortcut is the juce::parseXML() function, which returns a std::unique_ptr! @returns a new XmlElement, or nullptr if there was an error. */ static std::unique_ptr parse (const String& xmlData);