1. Java / Говнокод #16463

    +71

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    7. 7
    8. 8
    public StickyRouting getStickyRouting(String groupName, String sbPin, String ccNumber) {
            StickyRouting result = null;
     
            boolean isGroupNameEmpty = StringUtils.isEmpty(groupName) ? true : false;
            boolean isCcNumberEmpty = StringUtils.isEmpty(ccNumber) ? true : false;
            boolean isSbPinEmpty = StringUtils.isEmpty(sbPin) ? true : false;
            ...
    }

    Запостил: bfg1989, 03 Августа 2014

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

    • надо добавить исче
      boolean isNotGroupNameEmpty = StringUtils.isEmpty(groupName) ? false:true ;
      boolean isNotCcNumberEmpty = StringUtils.isEmpty(ccNumber) ? false:true ;
      boolean isNotSbPinEmpty = StringUtils.isEmpty(sbPin) ? false:true ;
      Ответить
      • boolean isGroupNameEmptyOrTrue = StringUtils.isEmpty(groupName) || true ;
        boolean isCcNumberEmptyOrTrue = StringUtils.isEmpty(ccNumber) || true ;
        boolean isSbPinEmptyOrTrue = StringUtils.isEmpty(sbPin) || true ;
        Ответить
        • boolean isGroupNameEmptyXorItSelf= StringUtils.isEmpty(groupName) ^ StringUtils.isEmpty(groupName)  ;
          boolean isCcNumberEmptyXorItSelf = StringUtils.isEmpty(ccNumber) ^ StringUtils.isEmpty(ccNumber);
          boolean isSbPinEmptyXorItSelf = StringUtils.isEmpty(sbPin) ^ StringUtils.isEmpty(sbPin);
          Ответить

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