Remove unnecessary lines.

This commit is contained in:
Dave Longley 2012-05-02 16:49:42 -04:00
parent 080dec516e
commit 657edcec47

View file

@ -1452,15 +1452,9 @@ class JsonLdProcessor {
} }
// if graph is not the default graph // if graph is not the default graph
if($name !== '') { if($name !== '' && !property_exists($default_graph->subjects, $name)) {
// add graph subject to default graph as needed
if(!property_exists($default_graph->subjects, $name)) {
$default_graph->subjects->{$name} = (object)array('@id' => $name); $default_graph->subjects->{$name} = (object)array('@id' => $name);
} }
else {
$default_graph->subjects->{$name};
}
}
// add subject to graph as needed // add subject to graph as needed
$subjects = $graph->subjects; $subjects = $graph->subjects;