forked from External/mage
fix order of subtypes on a cardview
This commit is contained in:
parent
09f0c9ad97
commit
ea14f9c361
1 changed files with 1 additions and 1 deletions
|
|
@ -987,7 +987,7 @@ public class CardView extends SimpleCardView {
|
||||||
}
|
}
|
||||||
if (!getSubTypes().isEmpty()) {
|
if (!getSubTypes().isEmpty()) {
|
||||||
type.append(" - ");
|
type.append(" - ");
|
||||||
type.append(String.join(" ", getSubTypes().stream().map(p->p.toString()).collect(Collectors.toSet())));
|
type.append(String.join(" ", getSubTypes().stream().map(SubType::toString).collect(Collectors.toList())));
|
||||||
}
|
}
|
||||||
return type.toString();
|
return type.toString();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue