1. ActionScript / Говнокод #3883

    −168

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    private function updateIssueView () : void
    {
    	if (_issue != null)
    	{
    		if(_issue["issue"]["wfAreaCd"] == "REFERRAL_COMMODITIES")
    		{
    			if (editComm != null) editComm.setIssue(_issue);
    			else callLater(updateIssueView);
    		}
    		else
    		{
    			if (editGffx != null) editGffx.setIssue(_issue);
    			else callLater(updateIssueView);
    		}
    	}
    }

    А ну создайся! Создавайся, я кому сказал! :D

    Запостил: dimas_art, 05 Августа 2010

    Комментарии (1) RSS

    • кажется там не хватает ветки else:
      if (_issue != null) { ... }
      else callLater(updateIssueView);
      Ответить

    Добавить комментарий