From: Michael Orlitzky Date: Mon, 26 Feb 2018 00:50:42 +0000 (-0500) Subject: Eliminate unnecessary intermediate result variables. X-Git-Tag: v0.1.0~30 X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=f22034c7b75b7096e6ef26de7a5bc8e12a3f0b07;hp=f22034c7b75b7096e6ef26de7a5bc8e12a3f0b07;p=apply-default-acl.git Eliminate unnecessary intermediate result variables. Before this commit, most library calls looked something like... int result = foo(x,y); if (result == whatever) { ... } and then the "result" variable was never used again. There's no need to introduce the new name, and it probably only increases confusion. So, this commit eliminates them all. ---