Code Duplication    Length = 3-3 lines in 2 locations

src/Fwlib/Bridge/Adodb.php 1 location

@@ 777-779 (lines=3) @@
774
     */
775
    public function getMetaColumnName($table, $forcenew = false)
776
    {
777
        if (!isset($this->metaColumnName[$table]) || (true == $forcenew)) {
778
            $this->metaColumnName[$table] = $this->conn->MetaColumnNames($table);
779
        }
780
        return $this->metaColumnName[$table];
781
    }
782

class/adodb.php 1 location

@@ 678-680 (lines=3) @@
675
	 * @see $aMetaColumnName
676
	 */
677
	public function GetMetaColumnName ($table, $forcenew = false) {
678
		if (!isset($this->aMetaColumnName[$table]) || (true == $forcenew)) {
679
			$this->aMetaColumnName[$table] = $this->MetaColumnNames($table);
680
		}
681
		return $this->aMetaColumnName[$table];
682
	} // end of func GetMetaColumnName
683