summaryrefslogtreecommitdiff
path: root/configmgr/source/xmlreader.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr/source/xmlreader.hxx')
-rw-r--r--configmgr/source/xmlreader.hxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/configmgr/source/xmlreader.hxx b/configmgr/source/xmlreader.hxx
index 9bb07592b679..c5436fea81f7 100644
--- a/configmgr/source/xmlreader.hxx
+++ b/configmgr/source/xmlreader.hxx
@@ -80,17 +80,13 @@ public:
private:
inline char read() { return pos_ == end_ ? '\0' : *pos_++; }
-
inline char peek() { return pos_ == end_ ? '\0' : *pos_; }
void normalizeLineEnds(Span const & text);
void skipSpace();
-
bool skipComment();
-
void skipProcessingInstruction();
-
void skipDocumentTypeDeclaration();
Span scanCdataSection();
@@ -105,15 +101,12 @@ private:
char const * begin, char const * end, bool fullyNormalize);
Result handleStartTag(Namespace * ns, Span * localName);
-
Result handleEndTag();
void handleElementEnd();
Result handleSkippedText(Span * data, Namespace * ns);
-
Result handleRawText(Span * text);
-
Result handleNormalizedText(Span * text);
struct NamespaceData {