mirror of
https://github.com/google/nomulus.git
synced 2025-05-15 00:47:11 +02:00
Comment typo of the day
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=122632247
This commit is contained in:
parent
24c11dfdca
commit
cc11653446
1 changed files with 4 additions and 3 deletions
|
@ -119,7 +119,8 @@ public class GracePeriod extends ImmutableObject {
|
|||
return instance;
|
||||
}
|
||||
|
||||
/** Create a GracePeriod for an (optional) OneTime billing event.
|
||||
/**
|
||||
* Creates a GracePeriod for an (optional) OneTime billing event.
|
||||
*
|
||||
* <p>Normal callers should always use {@link #forBillingEvent} instead, assuming they do not
|
||||
* need to avoid loading the BillingEvent from datastore. This method should typically be
|
||||
|
@ -133,7 +134,7 @@ public class GracePeriod extends ImmutableObject {
|
|||
return createInternal(type, expirationTime, clientId, billingEventOneTime, null);
|
||||
}
|
||||
|
||||
/** Create a GracePeriod for a Recurring billing event. */
|
||||
/** Creates a GracePeriod for a Recurring billing event. */
|
||||
public static GracePeriod createForRecurring(
|
||||
GracePeriodStatus type,
|
||||
DateTime expirationTime,
|
||||
|
@ -143,7 +144,7 @@ public class GracePeriod extends ImmutableObject {
|
|||
return createInternal(type, expirationTime, clientId, null, billingEventRecurring);
|
||||
}
|
||||
|
||||
/** Create a GracePeriod with no billing event. */
|
||||
/** Creates a GracePeriod with no billing event. */
|
||||
public static GracePeriod createWithoutBillingEvent(
|
||||
GracePeriodStatus type, DateTime expirationTime, String clientId) {
|
||||
return createInternal(type, expirationTime, clientId, null, null);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue