GIT: Housekeeping

This commit is contained in:
Andrew Heather 2019-12-06 17:28:34 +00:00
parent ae3a595b60
commit 5d7d24df94
3 changed files with 1 additions and 18 deletions

View File

@ -1357,12 +1357,6 @@ int main(int argc, char *argv[])
{
string line;
inFile.getLine(line);
if (line.empty())
{
continue;
}
IStringStream lineStr(line);
// This implies the end of while has been reached

View File

@ -217,9 +217,7 @@ Foam::functionObjects::runTimePostPro::surface::surface
edgeColour_(nullptr),
surfaceActor_(),
edgeActor_(),
maxGlyphLength_(0),
backFaceCulling_(false),
frontFaceCulling_(true)
maxGlyphLength_(0)
{
surfaceActor_ = vtkSmartPointer<vtkActor>::New();
edgeActor_ = vtkSmartPointer<vtkActor>::New();
@ -246,9 +244,6 @@ Foam::functionObjects::runTimePostPro::surface::surface
{
dict.readEntry("maxGlyphLength", maxGlyphLength_);
}
dict.readIfPresent("backFaceCulling", backFaceCulling_);
dict.readIfPresent("frontFaceCulling", frontFaceCulling_);
}

View File

@ -191,12 +191,6 @@ protected:
//- Max glyph length for representation type rtGlyph
scalar maxGlyphLength_;
//- Back face culling option; default = off
bool backFaceCulling_;
//- Front face culling option; default = on
bool frontFaceCulling_;
// Protected Member Functions