remove more toUpperCase()

This commit is contained in:
woodser 2025-05-02 12:42:16 -04:00
parent 17cd0f95bb
commit e3755300d8
No known key found for this signature in database
GPG key ID: 55A10DD48ADEE5EF

View file

@ -221,16 +221,16 @@ public class SupportView extends ActivatableView<TabPane, Void> {
// We might get that method called before we have the map is filled in the arbitratorManager // We might get that method called before we have the map is filled in the arbitratorManager
if (arbitratorTab != null) { if (arbitratorTab != null) {
arbitratorTab.setText(Res.get("support.tab.ArbitratorsSupportTickets", Res.get("shared.arbitrator")).toUpperCase()); arbitratorTab.setText(Res.get("support.tab.ArbitratorsSupportTickets", Res.get("shared.arbitrator")));
} }
if (signedOfferTab != null) { if (signedOfferTab != null) {
signedOfferTab.setText(Res.get("support.tab.SignedOffers").toUpperCase()); signedOfferTab.setText(Res.get("support.tab.SignedOffers"));
} }
if (mediatorTab != null) { if (mediatorTab != null) {
mediatorTab.setText(Res.get("support.tab.ArbitratorsSupportTickets", Res.get("shared.mediator")).toUpperCase()); mediatorTab.setText(Res.get("support.tab.ArbitratorsSupportTickets", Res.get("shared.mediator")));
} }
if (refundAgentTab != null) { if (refundAgentTab != null) {
refundAgentTab.setText(Res.get("support.tab.ArbitratorsSupportTickets", Res.get("shared.refundAgentForSupportStaff")).toUpperCase()); refundAgentTab.setText(Res.get("support.tab.ArbitratorsSupportTickets", Res.get("shared.refundAgentForSupportStaff")));
} }
} }