Skip to content

Commit 11944b9

Browse files
committed
---
yaml --- r: 2443 b: refs/heads/update-datastore c: d7845b8 h: refs/heads/master i: 2441: cf33994 2439: d6bf07d
1 parent 6710b0f commit 11944b9

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/gh-pages: 4e0561bb4504bf647db669a14417b2b2c87ba45d
55
refs/heads/bigquery: 762fa5830e6c398c0396177e3e7fd243bd62cfc3
66
refs/heads/pubsub-alpha: 1a0e970f265af871e02274085b9662b3fe29058b
77
refs/heads/resource-manager: ebf4adc5ee835cd2086c4ac5b4e78d01a5a005a7
8-
refs/heads/update-datastore: 3125167ad845cc5f0c5deeeffa215a56e9fff896
8+
refs/heads/update-datastore: d7845b86bcc38abc5a444fd8f08ec98a0d73d0c5
99
refs/tags/0.0.9: 22f1839238f66c39e67ed4dfdcd273b1ae2e8444
1010
refs/tags/v0.0.10: 207ebd2a3472fddee69fe1298eb90429e3306efd
1111
refs/tags/v0.0.11: ffbfba48a6426ff63c08ff2117e58681f251fbf2

branches/update-datastore/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ import com.google.gcloud.datastore.Entity;
121121
import com.google.gcloud.datastore.Key;
122122
import com.google.gcloud.datastore.KeyFactory;
123123
124-
Datastore datastore = DatastoreOptions.getDefaultInstance().service();
124+
Datastore datastore = DatastoreOptions.defaultInstance().service();
125125
KeyFactory keyFactory = datastore.newKeyFactory().kind(KIND);
126126
Key key = keyFactory.newKey(keyName);
127127
Entity entity = datastore.get(key);

branches/update-datastore/gcloud-java-datastore/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ import com.google.gcloud.datastore.Entity;
6666
import com.google.gcloud.datastore.Key;
6767
import com.google.gcloud.datastore.KeyFactory;
6868

69-
Datastore datastore = DatastoreOptions.getDefaultInstance().service();
69+
Datastore datastore = DatastoreOptions.defaultInstance().service();
7070
KeyFactory keyFactory = datastore.newKeyFactory().kind(KIND);
7171
Key key = keyFactory.newKey(keyName);
7272
Entity entity = datastore.get(key);

branches/update-datastore/gcloud-java-datastore/src/main/java/com/google/gcloud/datastore/DatastoreOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ public String namespace() {
174174
/**
175175
* Returns a default {@code DatastoreOptions} instance.
176176
*/
177-
public static DatastoreOptions getDefaultInstance() {
177+
public static DatastoreOptions defaultInstance() {
178178
return builder().build();
179179
}
180180

branches/update-datastore/gcloud-java-storage/src/main/java/com/google/gcloud/storage/StorageOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public String pathDelimiter() {
114114
/**
115115
* Returns a default {@code StorageOptions} instance.
116116
*/
117-
public static StorageOptions getDefaultInstance() {
117+
public static StorageOptions defaultInstance() {
118118
return builder().build();
119119
}
120120

0 commit comments

Comments
 (0)