From b6691884c36b838fc58a1873eda219a2e1567440 Mon Sep 17 00:00:00 2001 From: "Unknown (roddey)" <dev-null@apache.org> Date: Wed, 12 Jan 2000 00:29:49 +0000 Subject: [PATCH] Changes for the new URL and InputSource changes. git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@171533 13f79535-47bb-0310-9956-ffa450edef68 --- tests/ParserTest/ParserTest.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/ParserTest/ParserTest.cpp b/tests/ParserTest/ParserTest.cpp index bde2a02ef..3175f0c59 100644 --- a/tests/ParserTest/ParserTest.cpp +++ b/tests/ParserTest/ParserTest.cpp @@ -56,8 +56,11 @@ /** * $Log$ - * Revision 1.1 1999/11/09 01:02:14 twl - * Initial revision + * Revision 1.2 2000/01/12 00:29:49 roddey + * Changes for the new URL and InputSource changes. + * + * Revision 1.1.1.1 1999/11/09 01:02:14 twl + * Initial checkin * * Revision 1.3 1999/11/08 20:42:25 rahul * Swat for adding in Product name and CVS comment log variable. @@ -71,7 +74,6 @@ #include <util/PlatformUtils.hpp> #include <util/XMLString.hpp> #include <util/URL.hpp> -#include <internal/URLInputSource.hpp> #include <internal/XMLScanner.hpp> #include <validators/DTD/DTDValidator.hpp> #include "ParserTest.hpp" @@ -190,8 +192,7 @@ int main(int argC, char** argV) try { - URLInputSource src(urlPath); - scanner.scanDocument(src); + scanner.scanDocument(urlPath); } catch(const XMLException& toCatch) @@ -200,6 +201,5 @@ int main(int argC, char** argV) << toCatch.getMessage() << EndLn; } - return 0; } -- GitLab