Skip to content

Commit

Permalink
fix "The value of the local variable buf is not used"
Browse files Browse the repository at this point in the history
The wrong pattern
 StringBuilder buf= new StringBuilder();
 buf= new StringBuilder();
 ...
was cleaned up into
 StringBuilder buf= new StringBuilder();
 String str= """
 ...
which gave a compiler warning after "Convert String to TextBlock".
  • Loading branch information
EcljpseB0T authored and jukzi committed May 17, 2024
1 parent 4a5ece5 commit df564dc
Show file tree
Hide file tree
Showing 3 changed files with 472 additions and 484 deletions.

0 comments on commit df564dc

Please sign in to comment.