Code Duplication    Length = 5-5 lines in 2 locations

src/build/phing/org/agavi/build/tasks/ExecutetargetTask.php 2 locations

@@ 82-86 (lines=5) @@
79
			
80
			$this->project->copyUserProperties($project);
81
			$this->project->copyInheritedProperties($project);
82
			foreach($this->project->getProperties() as $name => $property) {
83
				if($project->getProperty($name) === null) {
84
					$project->setNewProperty($name, $property);
85
				}
86
			}
87
			
88
			$project->init();
89
			ProjectConfigurator::configureProject($project, new PhingFile($this->project->getProperty('phing.file')));
@@ 118-122 (lines=5) @@
115
		}
116
		
117
		$project->copyInheritedProperties($this->project);
118
		foreach($project->getProperties() as $name => $property) {
119
			if($this->project->getProperty($name) === null) {
120
				$this->project->setNewProperty($name, $property);
121
			}
122
		}
123
		
124
		/* Fuck. */
125
		unset($project);