Skip to content

Commit 99c4580

Browse files
committed
Fix.
1 parent 7b03d28 commit 99c4580

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build_runner_core/lib/src/generate/build.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -913,15 +913,15 @@ class Build {
913913
var firstNode = assetGraph.get(outputs.first)!;
914914
final firstNodeState = firstNode.generatedNodeState!;
915915

916-
/*if (firstNodeState.result == null) {
916+
if (firstNodeState.result == null) {
917917
if (logFine) {
918918
_logger.fine(
919919
'Build ${renderer.build(forInput, outputs)} because '
920-
'it was skipped.',
920+
'it was optional and is now needed.',
921921
);
922922
}
923923
return true;
924-
}*/
924+
}
925925

926926
final inputs = firstNodeState.inputs;
927927
/*if (logFine) {

0 commit comments

Comments
 (0)