>FromYourCode();

Source code quote in Java243

 May 02, 2016 am31 01:30
void foo(Object arg1)
{
    if((arg1 != null) return;
    else
        {
        String s = arg1.toString();
        System.out.println(s);
        }
}

Check similar quotes

Share this quote