From: Michael Orlitzky Date: Mon, 26 Feb 2018 00:55:34 +0000 (-0500) Subject: Inline the one call to the get_mode() function. X-Git-Tag: v0.1.0~29 X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;ds=sidebyside;h=ca41da09458ee421117901cc3e1a96a37e921f14;hp=ca41da09458ee421117901cc3e1a96a37e921f14;p=apply-default-acl.git Inline the one call to the get_mode() function. The get_mode() function was only called in one place, and its implementation was about three lines. The overhead of checking its arguments and figuring out its return value was not worth the absolutely tiny improvement in readability that the function afforded, so the whole thing has been inlined at its one call site. ---