Index: trunk/extensions/SemanticWatchlist/includes/SWL_PropertyChange.php |
— | — | @@ -41,8 +41,7 @@ |
42 | 42 | */ |
43 | 43 | public static function newFromSerialization( SMWDIProperty $property, $oldValue, $newValue ) { |
44 | 44 | $diType = SMWDataValueFactory::getDataItemId( $property->findPropertyTypeID() ); |
45 | | - //var_dump($property); |
46 | | - //if($diType!=7) {throw new Exception();exit;} |
| 45 | + |
47 | 46 | return new self( |
48 | 47 | is_null( $oldValue ) ? null : SMWDataItem::newFromSerialization( $diType, $oldValue ), |
49 | 48 | is_null( $newValue ) ? null : SMWDataItem::newFromSerialization( $diType, $newValue ) |