Commented out json verifier in main

This commit is contained in:
Jordan Cristiano 2015-07-06 00:12:04 -04:00
parent ab79444732
commit 87a3d645e4
1 changed files with 2 additions and 2 deletions

View File

@ -121,7 +121,7 @@ int main(const int argc, const char* argv[])
fclose(inputFp); fclose(inputFp);
fclose(outputFp); fclose(outputFp);
if (outputType == FileType::Json) /*if (outputType == FileType::Json)
{ {
FILE* outputFp = fopen(outputFile.c_str(), "rb"); FILE* outputFp = fopen(outputFile.c_str(), "rb");
JSON_checker jc = new_JSON_checker(20); JSON_checker jc = new_JSON_checker(20);
@ -138,6 +138,6 @@ int main(const int argc, const char* argv[])
fprintf(stderr, "JSON_checker_end: syntax error\n"); fprintf(stderr, "JSON_checker_end: syntax error\n");
} }
fclose(outputFp); fclose(outputFp);
} }*/
return 0; return 0;
} }