Skip to content

Commit

Permalink
remove debug stuff from json
Browse files Browse the repository at this point in the history
  • Loading branch information
shadowmage45 committed Oct 30, 2014
1 parent d41ab19 commit 41f8c61
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,6 @@ private void readRawChar() throws IOException
currentChar = ' ';
return;
}
AWLog.logDebug("rawChar: "+currentChar);
rawChar = readBuffer[index];
currentChar = readBuffer[index];
}
Expand All @@ -172,15 +171,12 @@ protected JsonAbstract readAbstract() throws IOException
{
if(rawChar=='{')
{
AWLog.logDebug("starting object read");
return readObject();
}
else if(rawChar=='[')
{
AWLog.logDebug("starting array read");
return readArray();
}
AWLog.logDebug("starting value read");
return readValue();
}

Expand Down Expand Up @@ -224,7 +220,6 @@ protected JsonObject readObject() throws IOException
}
readRawChar();//read to next char
skipBlanks();//advance to next valid character
AWLog.logDebug("read object: "+object.getJsonString());
return object;
}

Expand Down Expand Up @@ -260,7 +255,6 @@ protected JsonArray readArray() throws IOException
}
readRawChar();//read to next char
skipBlanks();//advance to next valid character
AWLog.logDebug("read array: "+array.getJsonString());
return array;
}

Expand Down

0 comments on commit 41f8c61

Please sign in to comment.