Code Duplication    Length = 3-3 lines in 2 locations

application/models/Media/Row.php 2 locations

@@ 100-102 (lines=3) @@
97
     */
98
    protected function afterDelete()
99
    {
100
        if (is_file(PATH_PUBLIC .'/'. $this->file)) {
101
            @unlink(PATH_PUBLIC .'/'. $this->file);
102
        }
103
        if (is_file(PATH_PUBLIC .'/'. $this->preview)) {
104
            @unlink(PATH_PUBLIC .'/'. $this->preview);
105
        }
@@ 103-105 (lines=3) @@
100
        if (is_file(PATH_PUBLIC .'/'. $this->file)) {
101
            @unlink(PATH_PUBLIC .'/'. $this->file);
102
        }
103
        if (is_file(PATH_PUBLIC .'/'. $this->preview)) {
104
            @unlink(PATH_PUBLIC .'/'. $this->preview);
105
        }
106
    }
107
}
108