Skip to content

Commit

Permalink
make Project constructor public
Browse files Browse the repository at this point in the history
  • Loading branch information
aozarov committed May 15, 2015
1 parent ed351d4 commit ccd84c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/google/gcloud/storage/Acl.java
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ enum ProjectRole {
OWNERS, EDITORS, VIEWERS
}

Project(ProjectRole pRole, String projectId) {
public Project(ProjectRole pRole, String projectId) {
super(Type.PROJECT, pRole.name().toLowerCase() + "-" + projectId);
this.pRole = pRole;
this.projectId = projectId;
Expand Down

0 comments on commit ccd84c3

Please sign in to comment.