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:
@@ -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())
|
||||
|
||||
Reference in New Issue
Block a user