cppcheck:redundantAssignment

Change-Id: I1167d0ce6b6f6e48309d0551c1d2a283d79546a7
This commit is contained in:
Noel Grandin
2015-06-13 10:09:21 +02:00
committed by Noel Grandin
parent 943f4b4ff1
commit 4ea281a3cc
38 changed files with 66 additions and 108 deletions

View File

@@ -726,9 +726,9 @@ void implRemoveDirRecursive( const OUString& aDirPath )
File::remove( aPath );
}
}
nRet = aDir.close();
aDir.close();
nRet = Directory::remove( aDirPath );
Directory::remove( aDirPath );
}