Skip to content

Commit

Permalink
address review
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy authored and nyalldawson committed Nov 26, 2021
1 parent b09d2fa commit 9cbe0dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions python/processing/algfactory.py
Expand Up @@ -322,12 +322,12 @@ class ProcessingAlgFactory():
RASTER_LAYER = "RASTER_LAYER",
VECTOR_LAYER = "VECTOR_LAYER",
MESH_LAYER = "MESH_LAYER",
POINT_CLOUD_LAYER = "MESH_LAYER",
POINT_CLOUD_LAYER = "POINT_CLOUD_LAYER",
FILE_DEST = "FILE_DEST",
FOLDER_DEST = "FOLDER_DEST",
RASTER_LAYER_DEST = "RASTER_LAYER_DEST",
VECTOR_LAYER_DEST = "VECTOR_LAYER_DEST",
POINTCLOUD_LAYER_DEST = "VECTOR_LAYER_DEST",
POINTCLOUD_LAYER_DEST = "POINTCLOUD_LAYER_DEST",
BAND = "BAND",
BOOL = "BOOL",
CRS = "CRS",
Expand Down
1 change: 0 additions & 1 deletion src/core/processing/qgsprocessingprovider.cpp
Expand Up @@ -194,7 +194,6 @@ bool QgsProcessingProvider::isSupportedOutputValue( const QVariant &outputValue,
{
const QFileInfo fi( outputPath );
const QString extension = fi.completeSuffix();
qDebug() << supportedOutputPointCloudLayerExtensions();
if ( !supportedOutputPointCloudLayerExtensions().contains( extension, Qt::CaseInsensitive ) )
{
error = tr( "“.%1” files are not supported as outputs for this algorithm" ).arg( extension );
Expand Down

0 comments on commit 9cbe0dd

Please sign in to comment.