pmd:AppendCharacterWithChar - Append Character With Char

This commit is contained in:
Mohammed Ezzat
2016-02-01 04:19:41 +02:00
parent 59c32d3937
commit 7adefc89ba
3 changed files with 7 additions and 7 deletions

View File

@ -98,7 +98,7 @@ public class Character {
.append(" armed with a ")
.append(weapon != null ? weapon : spell != null ? spell : "with nothing")
.append(abilities != null ? (" and wielding " + abilities + " abilities") : "")
.append(".");
.append('.');
return sb.toString();
}
}