Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ public GoogleCredential createScoped(Collection<String> scopes) {
/**
* {@link Beta} <br/>
* For service accounts that need to delegate to a specific user, create a
* copy of the credential with the specified user
* copy of the credential with the specified user.
*/
@Beta
public GoogleCredential createDelegated(String user) {
Expand Down Expand Up @@ -549,7 +549,7 @@ public static class Builder extends Credential.Builder {
/** Id of the private key to use with the service account flow or {@code null} for none. */
String serviceAccountPrivateKeyId;

/** Project Id associated with the Service Account */
/** Project ID associated with the Service Account. */
String serviceAccountProjectId;

/**
Expand Down Expand Up @@ -751,8 +751,8 @@ public Builder setServiceAccountPrivateKeyFromP12File(File p12File)
* the return type, but nothing else.
* </p>
*
* @param p12FileInputStream input stream to the p12 file (closed at the end of this method in a finally
* block)
* @param p12FileInputStream input stream to the p12 file. This file is closed at the end of
* this method in a finally block.
*/
public Builder setServiceAccountPrivateKeyFromP12File(InputStream p12FileInputStream)
throws GeneralSecurityException, IOException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
*/
public abstract class AbstractGoogleClient {

static final Logger logger = Logger.getLogger(AbstractGoogleClient.class.getName());
private static final Logger logger = Logger.getLogger(AbstractGoogleClient.class.getName());

/** The request factory for connections to the server. */
private final HttpRequestFactory requestFactory;
Expand Down