Quantcast
Channel: YouTrackReSharper (RSRP) - Bug and Issue Tracker
Viewing all articles
Browse latest Browse all 106942

RSRP-288340: Suggest simplification of 'if' to '||'

$
0
0
Reporter Vladimir Reshetnikov (nikov) Vladimir Reshetnikov (nikov)
Created Feb 16, 2012 3:51:53 AM
Updated Feb 16, 2012 3:51:53 AM
Priority Normal
Type Feature
Fix versions No Fix versions
State Submitted
Assignee Unassigned
Subsystem No subsystem
Affected versions No Affected versions
Fixed in build No Fixed in build
class Program
{
    static bool Foo(int x,int y)
    {
        bool result = x > 0;
        
        if(y > 0)
        {
            result = true;
        }

        return result;
    }
}


Expected result after simplification:

class Program
{
    static bool Foo(int x, int y)
    {
        bool result = x > 0 || y > 0;
        return result;
    }
}

Viewing all articles
Browse latest Browse all 106942

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>