> + > +import com.google.common.base.Objects; > + > +/** > + * The bucket's logging configuration, which defines the destination bucket > and optional name prefix for the current > + * bucket's logs. > + * > + * @see <a href= "https://developers.google.com/storage/docs/accesslogs" /> > + */ > + > +public final class Logging { > + private final String logBucket; > + private final String logObjectPrefix; > + > + public Logging(String logBucket, String logObjectPrefix) { > +
[minor] Remove blank line? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-google/pull/31/files#r14532784