Skip to content

Commit

Permalink
Make setDescription public on RoutineInfo.Builder
Browse files Browse the repository at this point in the history
Previously it was not possible to use RoutineInfo.Builder directly
to set the description.

It was possible via the Routine.Builder, but this allows users to not
care about this fact.
  • Loading branch information
hamnis committed Feb 26, 2024
1 parent acffb24 commit 7b32ef3
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -90,7 +90,7 @@ public abstract static class Builder {
abstract Builder setCreationTime(Long creationMillis);

/** Sets the description for the routine. */
abstract Builder setDescription(String description);
public abstract Builder setDescription(String description);

abstract Builder setLastModifiedTime(Long lastModifiedMillis);

Expand Down

0 comments on commit 7b32ef3

Please sign in to comment.