Remove buildWithoutImplicitStatusValues

This was used in DomainInfoFlow to return a DomainResource with no
nameservers without making INACTIVE show up. It was nominally used
in DomainApplicationInfoFlow for the same reason, but that's just
an artifact of the old flow hierarchy since applications never have
INACTIVE set anyways. In either case, now that we have the DomainInfo
return object instead of returning DomainResource directly from the
flow, it's better handled within the flow.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=145582317
This commit is contained in:
cgoldfeder 2017-01-25 12:34:25 -08:00 committed by Ben McIlwain
parent f647ea1190
commit 8071a1bdb5
4 changed files with 39 additions and 68 deletions

View file

@ -281,11 +281,6 @@ public abstract class EppResource extends BackupGroupRoot implements Buildable {
if (difference(getInstance().getStatusValues(), StatusValue.LINKED).isEmpty()) {
addStatusValue(StatusValue.OK);
}
return buildWithoutImplicitStatusValues();
}
/** Build the resource, nullifying empty strings and sets and setting defaults. */
public T buildWithoutImplicitStatusValues() {
// If there is no deletion time, set it to END_OF_TIME.
setDeletionTime(Optional.fromNullable(getInstance().deletionTime).or(END_OF_TIME));
return ImmutableObject.cloneEmptyToNull(super.build());