Skip to content

Commit

Permalink
Fix ErrorProne format string validation issue
Browse files Browse the repository at this point in the history
We only have 3 arguments for the format string.

#cleanup

PiperOrigin-RevId: 469828618
Change-Id: I1babeb5d3c3f25f79cc726ba201b2f1bbfeac7a0
  • Loading branch information
tetromino authored and aiuto committed Oct 12, 2022
1 parent 3d99eec commit 8292d0d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1263,7 +1263,7 @@ private static ConfiguredTargetValue createConfiguredTarget(
} else {
Preconditions.checkState(
analysisEnvironment.getRegisteredActions().isEmpty(),
"Non-rule can't have actions: %s %s %s %s",
"Non-rule can't have actions: %s %s %s",
configuredTargetKey,
analysisEnvironment.getRegisteredActions(),
configuredTarget);
Expand Down

0 comments on commit 8292d0d

Please sign in to comment.