File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -27,8 +27,6 @@ void QgsServerResponse::write( const QString &data )
27
27
QIODevice *iodev = io ();
28
28
if ( iodev )
29
29
{
30
- // QTextStream stream( iodev );
31
- // stream << data;
32
30
iodev->write ( data.toUtf8 () );
33
31
}
34
32
else
@@ -37,7 +35,6 @@ void QgsServerResponse::write( const QString &data )
37
35
}
38
36
}
39
37
40
-
41
38
qint64 QgsServerResponse::write ( const QByteArray &byteArray )
42
39
{
43
40
QIODevice *iodev = io ();
@@ -48,7 +45,6 @@ qint64 QgsServerResponse::write( const QByteArray &byteArray )
48
45
return 0 ;
49
46
}
50
47
51
-
52
48
qint64 QgsServerResponse::write ( const char *data, qint64 maxsize )
53
49
{
54
50
QIODevice *iodev = io ();
@@ -88,4 +84,3 @@ void QgsServerResponse::write( const QgsServerException &ex )
88
84
// log exception on server side too
89
85
QgsMessageLog::logMessage ( ba, QStringLiteral ( " Server" ), Qgis::Critical );
90
86
}
91
-
You can’t perform that action at this time.
0 commit comments