PythonEditor: Remove dead code

Change-Id: I78da9f381ba8081a681f46c045b436e143416206
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Tobias Hunger
2013-09-11 18:21:33 +02:00
committed by hjk
parent 6bdf99cde9
commit 6a352130bc

View File

@@ -225,11 +225,6 @@ inline static bool isValidIntegerSuffix(QChar ch)
return (ch == QLatin1Char('l') || ch == QLatin1Char('L'));
}
inline static bool isValidComplexSuffix(QChar ch)
{
return (ch == QLatin1Char('j') || ch == QLatin1Char('J'));
}
FormatToken Scanner::readNumber()
{
if (!m_src.isEnd()) {