diff Lib/IMPL/DOM/XMLReader.pm @ 384:4edd36025051

DOM schema refactoring
author cin
date Mon, 10 Feb 2014 17:41:34 +0400
parents 010ceafd0c5a
children 5aff94ba842f
line wrap: on
line diff
--- a/Lib/IMPL/DOM/XMLReader.pm	Thu Jan 23 17:26:34 2014 +0400
+++ b/Lib/IMPL/DOM/XMLReader.pm	Mon Feb 10 17:41:34 2014 +0400
@@ -61,7 +61,7 @@
 
 sub _OnEnd {
     my ($this,$element) = @_;
-    $this->{$_current}->nodeValue($this->Navigator->inflateValue( $this->{$_text} ) ) if length $this->{$_text} and (not $this->{$SkipWhitespace} or $this->{$_text} =~ /\S/);
+    $this->{$_current}->nodeValue($this->{$_text}) if length $this->{$_text} and (not $this->{$SkipWhitespace} or $this->{$_text} =~ /\S/);
     $this->{$_text} = pop @{$this->{$_textHistory}};
     $this->{$_current} = $this->Navigator->Back;
 }