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

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