Skip to content

Commit

Permalink
Remove unnecessary space.
Browse files Browse the repository at this point in the history
  • Loading branch information
kallentu committed Nov 29, 2023
1 parent ca308ed commit 65b0373
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/front_end/piece_factory.dart
Original file line number Diff line number Diff line change
Expand Up @@ -252,13 +252,13 @@ mixin PieceFactory implements CommentWriter {
Piece? onPiece;
if (catchClause.onKeyword case var onKeyword?) {
token(onKeyword, after: space);
visit(catchClause.exceptionType, after: space);
visit(catchClause.exceptionType);
onPiece = pieces.split();
}

Piece? catchPiece;
if (catchClause.catchKeyword case var catchKeyword?) {
token(catchKeyword, after: space);
token(catchKeyword);
var catchKeywordPiece = pieces.split();

var builder = DelimitedListBuilder(this);
Expand Down

0 comments on commit 65b0373

Please sign in to comment.