From: Ralph Corderoy Date: Sat, 9 Sep 2017 20:30:39 +0000 (+0100) Subject: icalparse.y: Remove else-block that returns by merging if-conditions. X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/ea1fd31a3d41352b024fb35a1a781dce6a2f7afe?ds=sidebyside;hp=ea1fd31a3d41352b024fb35a1a781dce6a2f7afe icalparse.y: Remove else-block that returns by merging if-conditions. The code tested two values to see if they were present, and if they were, and were equal, then it returned this node. If either were missing then this node was still returned because it matched the more limited criteria that had already been tested. So the test for returning this node can more simply be if either value to compare is missing, or they're (both present and) equal. ---