Skip to content

Commit

Permalink
Merge pull request #1557 from Windchild292/revert-1555-dev_Windchild_…
Browse files Browse the repository at this point in the history
…C3TOE

Revert "Fixing spacing for C3 Slaves in the TOE"
  • Loading branch information
sixlettervariables authored Mar 14, 2020
2 parents c7d564e + 18aea0d commit e812963
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions MekHQ/src/mekhq/gui/ForceRenderer.java
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,10 @@ public Component getTreeCellRendererComponent(
// an independent master might also be a slave to a company
// master
if (entity.getC3Master() != null) {
c3network += "<br>" + Messages.getString("ChatLounge.C3Slave") + " "
+ entity.getC3Master().getShortName();
c3network += "<br>" + Messages.getString("ChatLounge.C3Slave") + entity.getC3Master().getShortName(); //$NON-NLS-1$
}
} else if (entity.getC3Master() != null) {
c3network += Messages.getString("ChatLounge.C3Slave") + " "
+ entity.getC3Master().getShortName();
c3network += Messages.getString("ChatLounge.C3Slave") + entity.getC3Master().getShortName(); //$NON-NLS-1$
} else {
c3network += Messages.getString("ChatLounge.C3None");
}
Expand Down

0 comments on commit e812963

Please sign in to comment.