Code Duplication    Length = 3-3 lines in 2 locations

code/model/VimeoDataObject.php 2 locations

@@ 367-369 (lines=3) @@
364
                    if (isset($data['attributes'])) {
365
                        $new_tag['attributes'] = $data['attributes'];
366
                    }
367
                    if (isset($data['value']) && trim($data['value'])) {
368
                        $new_tag['value'] = trim($data['value']);
369
                    }
370
                    $last_tag_ar[$last_counter_in_tag[$data['level']]] = $new_tag;
371
                    $parents[$data['level']] =& $last_tag_ar;
372
                    $last_tag_ar =& $last_tag_ar[$last_counter_in_tag[$data['level']]++];
@@ 379-381 (lines=3) @@
376
                    if (isset($data['attributes'])) {
377
                        $new_tag['attributes'] = $data['attributes'];
378
                    }
379
                    if (isset($data['value']) && trim($data['value'])) {
380
                        $new_tag['value'] = trim($data['value']);
381
                    }
382
                    $last_count = count($last_tag_ar)-1;
383
                    $last_tag_ar[$last_counter_in_tag[$data['level']]++] = $new_tag;
384
                    break;