| Index: pkg/barback/lib/src/transform_node.dart
|
| diff --git a/pkg/barback/lib/src/transform_node.dart b/pkg/barback/lib/src/transform_node.dart
|
| index 5eb0e6b5c36c687fd90be766fcc8ee535756f95f..65dce6ec376a2b3e71278c89b8da3e25821b2a27 100644
|
| --- a/pkg/barback/lib/src/transform_node.dart
|
| +++ b/pkg/barback/lib/src/transform_node.dart
|
| @@ -411,16 +411,6 @@ class TransformNode {
|
| phase.cascade.reportError(new InvalidOutputException(info, id));
|
| }
|
|
|
| - if (_declaredOutputs != null) {
|
| - var missingOutputs = _declaredOutputs.difference(
|
| - newOutputs.map((asset) => asset.id).toSet());
|
| - if (missingOutputs.isNotEmpty) {
|
| - _warn("This transformer didn't emit declared "
|
| - "${pluralize('output asset', missingOutputs.length)} "
|
| - "${toSentence(missingOutputs)}.");
|
| - }
|
| - }
|
| -
|
| // Remove outputs that used to exist but don't anymore.
|
| for (var id in _outputControllers.keys.toList()) {
|
| if (newOutputs.containsId(id)) continue;
|
|
|