Remove unused code from QXmlStream autotest

Change-Id: I719e502ef14848a22d41de71245fe6b6758c8d6b
Reviewed-by: Rohan McGovern
(cherry picked from commit 614474fb3d440eabd3ba7e381d246064ce39f4fa)
This commit is contained in:
Jason McDonald 2011-05-03 17:30:43 +10:00 committed by Rohan McGovern
parent 8c191084a8
commit 48ab5a8d25

View File

@ -47,17 +47,9 @@ QT_FORWARD_DECLARE_CLASS(QString)
class QC14N
{
public:
enum Option
{
IgnoreProcessingInstruction,
IgnoreComments
};
typedef QFlags<Option> Options;
static bool isEqual(QIODevice *const firstDocument,
QIODevice *const secondDocument,
QString *const message = 0,
const Options options = Options());
QString *const message = 0);
private:
static bool isDifferent(const QXmlStreamReader &r1,
@ -76,8 +68,7 @@ private:
*/
bool QC14N::isEqual(QIODevice *const firstDocument,
QIODevice *const secondDocument,
QString *const message,
const Options options)
QString *const message)
{
qDebug() << Q_FUNC_INFO;
Q_ASSERT_X(firstDocument, Q_FUNC_INFO,
@ -86,10 +77,6 @@ bool QC14N::isEqual(QIODevice *const firstDocument,
"A valid QIODevice pointer must be supplied");
Q_ASSERT_X(firstDocument->isReadable(), Q_FUNC_INFO, "The device must be readable.");
Q_ASSERT_X(secondDocument->isReadable(), Q_FUNC_INFO, "The device must be readable.");
Q_ASSERT_X(options == Options(), Q_FUNC_INFO,
"Not yet implemented.");
Q_UNUSED(options);
QXmlStreamReader r1(firstDocument);
QXmlStreamReader r2(secondDocument);