summaryrefslogtreecommitdiff
path: root/Xerl/XML
diff options
context:
space:
mode:
authorPaul Buetow (pluto.buetow.org) <paul@buetow.org>2013-09-15 12:56:45 +0200
committerPaul Buetow (pluto.buetow.org) <paul@buetow.org>2013-09-15 12:56:45 +0200
commit1b9b7434445e84eef29ccfda9a80b54c19343df5 (patch)
tree3018a8e3d4fec9aeee6987e98f74cf8063d7b161 /Xerl/XML
parentaf4ddb3afc5e0fe4c77b9df3bcb4ea4aa2d33c8d (diff)
remove libXML
Diffstat (limited to 'Xerl/XML')
-rw-r--r--Xerl/XML/Reader.pm12
1 files changed, 0 insertions, 12 deletions
diff --git a/Xerl/XML/Reader.pm b/Xerl/XML/Reader.pm
index c349443..3605c04 100644
--- a/Xerl/XML/Reader.pm
+++ b/Xerl/XML/Reader.pm
@@ -32,19 +32,9 @@ package Xerl::XML::Reader;
use strict;
use warnings;
-use XML::LibXML;
-
use Xerl::Base;
use Xerl::XML::Element;
-sub process($) {
- my Xerl::XML::Reader $self = shift;
-
- my $doc = XML::LibXML->load_xml(location => $self->get_path());
-
- return undef;
-}
-
sub open($) {
my Xerl::XML::Reader $self = $_[0];
@@ -60,8 +50,6 @@ sub open($) {
sub parse($) {
my Xerl::XML::Reader $self = $_[0];
- my $process = $self->process();
-
my $rarray = $self->get_array();
return $self unless ref $rarray eq 'ARRAY';