From d386abfb09e4add6817cfb3fc8fcb259a2b69705 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 16 Feb 2017 13:36:57 +0200 Subject: remove unused enumerators from SQLNodeType Change-Id: I0e8a3c5b63a00befa36c7edfbec0acd60bd3dc03 --- connectivity/source/parse/sqlnode.cxx | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'connectivity') diff --git a/connectivity/source/parse/sqlnode.cxx b/connectivity/source/parse/sqlnode.cxx index 6ab4a2f0eddb..d2e88a92d6a4 100644 --- a/connectivity/source/parse/sqlnode.cxx +++ b/connectivity/source/parse/sqlnode.cxx @@ -2290,12 +2290,6 @@ void OSQLParseNode::showParseTree( OUStringBuffer& _inout_rBuffer, sal_uInt32 nL _inout_rBuffer.append( '\n' ); break; - case SQLNodeType::Comparison: - _inout_rBuffer.appendAscii( "SQL_COMPARISON: " ); - _inout_rBuffer.append( m_aNodeValue ); - _inout_rBuffer.append( '\n' ); - break; - case SQLNodeType::Name: _inout_rBuffer.appendAscii( "SQL_NAME: " ); _inout_rBuffer.append( '"' ); @@ -2330,12 +2324,6 @@ void OSQLParseNode::showParseTree( OUStringBuffer& _inout_rBuffer, sal_uInt32 nL _inout_rBuffer.append( '\n' ); break; - case SQLNodeType::AMMSC: - _inout_rBuffer.appendAscii( "SQL_AMMSC: " ); - _inout_rBuffer.append( m_aNodeValue ); - _inout_rBuffer.append( '\n' ); - break; - case SQLNodeType::Equal: case SQLNodeType::Less: case SQLNodeType::Great: @@ -2352,12 +2340,6 @@ void OSQLParseNode::showParseTree( OUStringBuffer& _inout_rBuffer, sal_uInt32 nL _inout_rBuffer.append( '\n' ); break; - case SQLNodeType::Date: - _inout_rBuffer.appendAscii( "SQL_DATE: " ); - _inout_rBuffer.append( m_aNodeValue ); - _inout_rBuffer.append( '\n' ); - break; - case SQLNodeType::Concat: _inout_rBuffer.appendAscii( "||" ); _inout_rBuffer.append( '\n' ); -- cgit