1
0
mirror of https://github.com/google/nomulus synced 2026-06-07 07:22:55 +00:00

Fix another "extra parens" warning (#938)

* Fix another "extra parens" warning

Same place as the last one, but I missed it :-(
This commit is contained in:
Michael Muller
2021-01-22 13:39:30 -05:00
committed by GitHub
parent 48de5d8375
commit e89cc4406a

View File

@@ -71,7 +71,7 @@ public class ContactCommandTest {
EppLoader eppLoader = new EppLoader(this, "contact_update.xml");
Update command =
(Update)
((ResourceCommandWrapper) (eppLoader.getEpp().getCommandWrapper().getCommand()))
((ResourceCommandWrapper) eppLoader.getEpp().getCommandWrapper().getCommand())
.getResourceCommand();
Change change = command.getInnerChange();
assertThat(change.getInternationalizedPostalInfo().getAddress())