Code Duplication    Length = 3-3 lines in 2 locations

system/Inji/Model.php 2 locations

@@ 573-575 (lines=3) @@
570
      }
571
    } else {
572
      $cols = static::cols();
573
      if (!empty(static::$labels[$info['col']])) {
574
        $info['label'] = static::$labels[$info['col']];
575
      }
576
577
      if (isset(static::$cols[$info['col']])) {
578
        $info['colParams'] = static::$cols[$info['col']];
@@ 589-591 (lines=3) @@
586
      }
587
      $info['modelName'] = get_called_class();
588
    }
589
    if (!empty(static::$labels[$info['rawCol']])) {
590
      $info['label'] = static::$labels[$info['rawCol']];
591
    }
592
    return $info;
593
  }
594