> + > +import com.google.common.base.Objects; > +import com.google.common.collect.ImmutableSet; > + > +/** > + * The bucket's lifecycle configuration. > + * > + * @see <a href= "https://developers.google.com/storage/docs/lifecycle" /> > + */ > + > +public class BucketLifeCycle { > + > + > + private final Set<Rule> rules; > + > + public BucketLifeCycle(Set<Rule> rule) {
Should the variable be `rules` here? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-google/pull/31/files#r14532720
