Skip to content

Commit

Permalink
Sonarqube updates
Browse files Browse the repository at this point in the history
x-stream#298
Use Charsequence and StringBuilder rather than StringBuffer
With assist from Honor Systems Updater.

Signed-off-by: Steve Davidson <[email protected]>
  • Loading branch information
gorky committed Jul 6, 2022
1 parent 23d03c0 commit bbf4e3d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class FiveBean extends OneBean {
private int two;
private boolean three;
private char four;
private StringBuffer five;
private CharSequence five;

public int getTwo() {
return this.two;
Expand All @@ -49,11 +49,11 @@ public void setFour(char four) {
this.four = four;
}

public StringBuffer getFive() {
public CharSequence getFive() {
return this.five;
}

public void setFive(StringBuffer five) {
public void setFive(CharSequence five) {
this.five = five;
}

Expand Down

0 comments on commit bbf4e3d

Please sign in to comment.