From e2010df8b01e4b5b4f8eb980408bcfe659b7a055 Mon Sep 17 00:00:00 2001 From: Jan Travnicek <Jan.Travnicek@fit.cvut.cz> Date: Fri, 7 Jun 2019 08:58:55 +0200 Subject: [PATCH] remove not needed protected visibility --- alib2xml/src/sax/ComposerException.h | 1 - alib2xml/src/sax/ParserException.h | 1 - 2 files changed, 2 deletions(-) diff --git a/alib2xml/src/sax/ComposerException.h b/alib2xml/src/sax/ComposerException.h index 294dbffb84..114dfdc10e 100644 --- a/alib2xml/src/sax/ComposerException.h +++ b/alib2xml/src/sax/ComposerException.h @@ -17,7 +17,6 @@ namespace sax { * Exception thrown by XML parser when is expected different tag than the one which is read. */ class ComposerException: public exception::CommonException { -protected: Token m_expected; Token m_read; public: diff --git a/alib2xml/src/sax/ParserException.h b/alib2xml/src/sax/ParserException.h index 1ca5a5706e..ad8860fb39 100644 --- a/alib2xml/src/sax/ParserException.h +++ b/alib2xml/src/sax/ParserException.h @@ -17,7 +17,6 @@ namespace sax { * Exception thrown by XML parser when is expected different tag than the one which is read. */ class ParserException: public exception::CommonException { -protected: Token m_expected; Token m_read; public: -- GitLab