Skip to content

Commit

Permalink
Fix ServiceOptions bug from merge
Browse files Browse the repository at this point in the history
  • Loading branch information
Ajay Kannan committed Feb 2, 2016
1 parent fbe5a1d commit 47d5580
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

import static com.google.common.base.MoreObjects.firstNonNull;
import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkNotNull;
import static java.nio.charset.StandardCharsets.UTF_8;

import com.google.api.client.extensions.appengine.http.UrlFetchTransport;
Expand Down Expand Up @@ -229,8 +228,7 @@ public B clock(Clock clock) {
* @return the builder
*/
public B projectId(String projectId) {
this.projectId =
checkNotNull(projectId, "Project ID cannot be set to null. Leave unset for default.");
this.projectId = projectId;
return self();
}

Expand Down

0 comments on commit 47d5580

Please sign in to comment.