Skip to content

Commit

Permalink
Fix random warning
Browse files Browse the repository at this point in the history
  • Loading branch information
matozoid committed Oct 16, 2017
1 parent 23669ee commit f3744df
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -61,7 +61,7 @@ default String getQualifiedName() {
* The signature of the method.
*/
default String getSignature() {
StringBuffer sb = new StringBuffer();
StringBuilder sb = new StringBuilder();
sb.append(getName());
sb.append("(");
for (int i = 0; i < getNumberOfParams(); i++) {
Expand Down

0 comments on commit f3744df

Please sign in to comment.