aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--parsingtoolbox.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/parsingtoolbox.cpp b/parsingtoolbox.cpp
index 0052f07..f6b1f12 100644
--- a/parsingtoolbox.cpp
+++ b/parsingtoolbox.cpp
@@ -238,16 +238,13 @@ bool ParsingToolBox::readDiceRange(QString& str,int& start, int& end)
{
bool expectSquareBrasket=false;
- qDebug()<<"readDiceRange"<<str;
if((str.startsWith("[")))
{
str=str.remove(0,1);
expectSquareBrasket = true;
}
-qDebug()<<"readDiceRange"<<str;
if(readNumber(str,start))
{
- qDebug()<<"readDiceRange"<<str;
if(str.startsWith("-"))
{
str=str.remove(0,1);
@@ -270,7 +267,6 @@ qDebug()<<"readDiceRange"<<str;
{
return false;
}
- qDebug()<<"readDiceRange"<<str;
}
}