Fix copy/paste error.

This commit is contained in:
Jeff Young 2020-03-16 19:17:21 +00:00
parent 3b97993daf
commit c9f8716414
1 changed files with 0 additions and 4 deletions

View File

@ -208,8 +208,6 @@ static float getPinAngle( int aOrientation )
static const char* getSheetPinShapeToken( PINSHEETLABEL_SHAPE aShape )
{
wxString retv;
switch( aShape )
{
case PINSHEETLABEL_SHAPE::PS_INPUT: return SCHEMATIC_LEXER::TokenName( T_input );
@ -219,8 +217,6 @@ static const char* getSheetPinShapeToken( PINSHEETLABEL_SHAPE aShape )
case PINSHEETLABEL_SHAPE::PS_UNSPECIFIED: return SCHEMATIC_LEXER::TokenName( T_passive );
default: wxFAIL; return SCHEMATIC_LEXER::TokenName( T_passive );
}
return retv;
}