Removed unnecessary if statement

This commit is contained in:
Matt Hill
2015-04-17 22:24:10 -04:00
parent 06d1a1952e
commit 6a85d895f2

View File

@@ -80,8 +80,7 @@ int main( int argc, const char** argv )
} }
if (DirectoryExists(inDir.c_str()))
{
const int CHAR_PADDING_HORIZONTAL = 0; const int CHAR_PADDING_HORIZONTAL = 0;
const int CHAR_PADDING_VERTICAL = 0; const int CHAR_PADDING_VERTICAL = 0;
@@ -220,5 +219,5 @@ int main( int argc, const char** argv )
imwrite("combined.tif", bigTif); imwrite("combined.tif", bigTif);
ofstream boxFile("combined.box", std::ios::out); ofstream boxFile("combined.box", std::ios::out);
boxFile << boxFileOut.str(); boxFile << boxFileOut.str();
}
} }