Skip to content

Commit

Permalink
Automatic code cleanup.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 657901136
Change-Id: Ie4aa0d0f3e7fe9b28c4445d5e7501dd73bf20bad
  • Loading branch information
Googler authored and copybara-github committed Jul 31, 2024
1 parent 86159f1 commit dde9740
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public static boolean canUseAsync(boolean async, boolean expunge, OS os, Reporte
(async || asyncSupportMissing)
? "Starting clean."
: "Starting clean (this may take a while). "
+ "Consider using --async if the clean takes more than several minutes.";
+ "Use --async if the clean takes more than several minutes.";
reporter.handle(Event.info(/* location= */ null, cleanBanner));

return async;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class CleanCommandRecommendsAsyncTest {
private final boolean asyncOnCommandLine;
private final OS os;
private final boolean expectSuggestion;
private static final String EXPECTED_SUGGESTION = "Consider using --async";
private static final String EXPECTED_SUGGESTION = "Use --async";

public CleanCommandRecommendsAsyncTest(
boolean asyncOnCommandLine, OS os, boolean expectSuggestion) throws Exception {
Expand Down

0 comments on commit dde9740

Please sign in to comment.