mirror of
https://github.com/google/nomulus
synced 2026-05-22 15:51:49 +00:00
Registrant of a domain can never be null
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=122630609
This commit is contained in:
committed by
Justine Tunney
parent
68b75461db
commit
d2a66e9d1f
@@ -104,7 +104,7 @@ final class AuctionStatusCommand implements RemoteApiCommand, GtechCommand {
|
||||
new Function<DomainApplication, String>() {
|
||||
@Override
|
||||
public String apply(DomainApplication app) {
|
||||
ContactResource registrant = checkNotNull(app.loadRegistrant());
|
||||
ContactResource registrant = checkNotNull(app.getRegistrant().get());
|
||||
Object[] keysAndValues = new Object[] {
|
||||
"Domain", app.getFullyQualifiedDomainName(),
|
||||
"Type", app.getEncodedSignedMarks().isEmpty() ? "Landrush" : "Sunrise",
|
||||
|
||||
Reference in New Issue
Block a user