mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 11:32:00 -08:00
Remove trailing space on CardHelper.getType()
This commit is contained in:
parent
dd84287305
commit
c854fc3d1a
1 changed files with 4 additions and 0 deletions
|
|
@ -69,6 +69,10 @@ public final class CardHelper {
|
|||
type.append(' ');
|
||||
}
|
||||
}
|
||||
if (type.length() > 0) {
|
||||
// remove trailing space
|
||||
type.deleteCharAt(type.length() - 1);
|
||||
}
|
||||
return type.toString();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue