Skip to content

Commit a4b49bc

Browse files
committed
---
yaml --- r: 2271 b: refs/heads/pubsub-alpha c: 526eb5f h: refs/heads/master i: 2269: 56fbb55 2267: f0088f9 2263: fac02f8 2255: f10e3b4 2239: 890f189
1 parent 4dfcc3f commit a4b49bc

13 files changed

Lines changed: 14 additions & 15 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ refs/heads/master: 689bbb466df4b2d5d2483d6edb8ac5c7c7f7c6fa
33
refs/heads/travis: e21ee7b88a5edc3f3d8c71f90c3fc32abf7e8dd6
44
refs/heads/gh-pages: 4e0561bb4504bf647db669a14417b2b2c87ba45d
55
refs/heads/bigquery: 762fa5830e6c398c0396177e3e7fd243bd62cfc3
6-
refs/heads/pubsub-alpha: 6fed3ee12f7b0b86fdc275dc2e697b2d1f431241
6+
refs/heads/pubsub-alpha: 526eb5f2df397fc26cc5fa147ba1a0df01b319f9
77
refs/heads/resource-manager: ebf4adc5ee835cd2086c4ac5b4e78d01a5a005a7
88
refs/heads/update-datastore: 482954f2c5055231e5b3122ea91d2ba00ce8187c
99
refs/tags/0.0.9: 22f1839238f66c39e67ed4dfdcd273b1ae2e8444

branches/pubsub-alpha/gcloud-java-examples/src/main/java/com/google/gcloud/examples/bigquery/snippets/CreateTableAndLoadData.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/*
1818
* EDITING INSTRUCTIONS
1919
* This file is referenced in READMEs and javadoc. Any change to this file should be reflected in
20-
* project's READMEs and package-info.java.
20+
* the project's READMEs and package-info.java.
2121
*/
2222

2323
package com.google.gcloud.examples.bigquery.snippets;
@@ -35,7 +35,7 @@
3535

3636
/**
3737
* A snippet for Google Cloud BigQuery showing how to get a BigQuery table or create it if it does
38-
* not exists. The snippet also starts a BigQuery job to load data into the table from a Cloud
38+
* not exist. The snippet also starts a BigQuery job to load data into the table from a Cloud
3939
* Storage blob and wait until the job completes.
4040
*/
4141
public class CreateTableAndLoadData {

branches/pubsub-alpha/gcloud-java-examples/src/main/java/com/google/gcloud/examples/bigquery/snippets/InsertDataAndQueryTable.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/*
1818
* EDITING INSTRUCTIONS
1919
* This file is referenced in READMEs and javadoc. Any change to this file should be reflected in
20-
* project's READMEs and package-info.java.
20+
* the project's READMEs and package-info.java.
2121
*/
2222

2323
package com.google.gcloud.examples.bigquery.snippets;
@@ -48,7 +48,6 @@
4848
public class InsertDataAndQueryTable {
4949

5050
public static void main(String... args) throws InterruptedException {
51-
5251
// Create a service instance
5352
BigQuery bigquery = BigQueryOptions.defaultInstance().service();
5453

branches/pubsub-alpha/gcloud-java-examples/src/main/java/com/google/gcloud/examples/datastore/DatastoreExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ private static class DeleteAction implements DatastoreAction {
6767
public void run(Transaction tx, Key userKey, String... args) {
6868
Entity user = tx.get(userKey);
6969
if (user == null) {
70-
System.out.println("Nothing to delete, user does not exists.");
70+
System.out.println("Nothing to delete, user does not exist.");
7171
return;
7272
}
7373
Query<Key> query = Query.keyQueryBuilder()

branches/pubsub-alpha/gcloud-java-examples/src/main/java/com/google/gcloud/examples/datastore/snippets/AddEntitiesAndRunQuery.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/*
1818
* EDITING INSTRUCTIONS
1919
* This file is referenced in READMEs and javadoc. Any change to this file should be reflected in
20-
* project's READMEs and package-info.java.
20+
* the project's READMEs and package-info.java.
2121
*/
2222

2323
package com.google.gcloud.examples.datastore.snippets;

branches/pubsub-alpha/gcloud-java-examples/src/main/java/com/google/gcloud/examples/datastore/snippets/CreateEntity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/*
1818
* EDITING INSTRUCTIONS
1919
* This file is referenced in READMEs and javadoc. Any change to this file should be reflected in
20-
* project's READMEs and package-info.java.
20+
* the project's READMEs and package-info.java.
2121
*/
2222

2323
package com.google.gcloud.examples.datastore.snippets;

branches/pubsub-alpha/gcloud-java-examples/src/main/java/com/google/gcloud/examples/datastore/snippets/UpdateEntity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/*
1818
* EDITING INSTRUCTIONS
1919
* This file is referenced in READMEs and javadoc. Any change to this file should be reflected in
20-
* project's READMEs and package-info.java.
20+
* the project's READMEs and package-info.java.
2121
*/
2222

2323
package com.google.gcloud.examples.datastore.snippets;

branches/pubsub-alpha/gcloud-java-examples/src/main/java/com/google/gcloud/examples/resourcemanager/snippets/GetOrCreateProject.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/*
1818
* EDITING INSTRUCTIONS
1919
* This file is referenced in READMEs and javadoc. Any change to this file should be reflected in
20-
* project's READMEs and package-info.java.
20+
* the project's READMEs and package-info.java.
2121
*/
2222

2323
package com.google.gcloud.examples.resourcemanager.snippets;

branches/pubsub-alpha/gcloud-java-examples/src/main/java/com/google/gcloud/examples/resourcemanager/snippets/UpdateAndListProjects.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/*
1818
* EDITING INSTRUCTIONS
1919
* This file is referenced in READMEs and javadoc. Any change to this file should be reflected in
20-
* project's READMEs and package-info.java.
20+
* the project's READMEs and package-info.java.
2121
*/
2222

2323
package com.google.gcloud.examples.resourcemanager.snippets;

branches/pubsub-alpha/gcloud-java-examples/src/main/java/com/google/gcloud/examples/storage/StorageExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
* <li>login using gcloud SDK - {@code gcloud auth login}.</li>
6666
* <li>compile using maven - {@code mvn compile}</li>
6767
* <li>run using maven -
68-
* <pre>{@code mvn exec:java -Dexec.mainClass="com.google.gcloud.examples.StorageExample"
68+
* <pre>{@code mvn exec:java -Dexec.mainClass="com.google.gcloud.examples.storage.StorageExample"
6969
* -Dexec.args="[<project_id>]
7070
* list [<bucket>] |
7171
* info [<bucket> [<file>]] |

0 commit comments

Comments
 (0)