Skip to content

Commit 4c99c50

Browse files
authored
---
yaml --- r: 7705 b: refs/heads/tswast-patch-1 c: 0d9d1b3 h: refs/heads/master i: 7703: 3b1df8e
1 parent 81d6679 commit 4c99c50

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ refs/tags/v0.18.0: 9d193c4c4b9d1c6f21515dd8e50836b9194ec9bb
5757
refs/tags/v0.19.0: e67b56e4d8dad5f9a7b38c9b2107c23c828f2ed5
5858
refs/tags/v0.20.0: 839f7fb7156535146aa1cb2c5aadd8d375d854e8
5959
refs/tags/v0.20.1: 370471f437f1f4f68a11e068df5cd6bf39edb1fa
60-
refs/heads/tswast-patch-1: 243d0d115aaa2ea8de0019bb6fb9859ee598fcbf
60+
refs/heads/tswast-patch-1: 0d9d1b3ce548aa5335e23b8c2ec0464df8002d9f
6161
refs/heads/pubsub-streaming-pull: 19262b752ee874eb2ca3b950eb2aef44d5a5267b

branches/tswast-patch-1/google-cloud-core/src/main/java/com/google/cloud/ServiceOptions.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public abstract class ServiceOptions<ServiceT extends Service<OptionsT>, Service
7373
private static final String MANIFEST_ARTIFACT_ID_KEY = "artifactId";
7474
private static final String MANIFEST_VERSION_KEY = "Implementation-Version";
7575
private static final String ARTIFACT_ID = "google-cloud-core";
76-
private static final String LIBRARY_NAME = "google-cloud-java";
76+
private static final String LIBRARY_NAME = "gcloud-java";
7777
private static final String LIBRARY_VERSION = defaultLibraryVersion();
7878
private static final String APPLICATION_NAME =
7979
LIBRARY_VERSION == null ? LIBRARY_NAME : LIBRARY_NAME + "/" + LIBRARY_VERSION;
@@ -570,30 +570,30 @@ public Clock getClock() {
570570
}
571571

572572
/**
573-
* Returns the application's name as a string in the format {@code google-cloud-java/[version]}.
573+
* Returns the application's name as a string in the format {@code gcloud-java/[version]}.
574574
*/
575575
@Deprecated
576576
public String applicationName() {
577577
return getApplicationName();
578578
}
579579

580580
/**
581-
* Returns the application's name as a string in the format {@code google-cloud-java/[version]}.
581+
* Returns the application's name as a string in the format {@code gcloud-java/[version]}.
582582
*/
583583
public String getApplicationName() {
584584
return APPLICATION_NAME;
585585
}
586586

587587
/**
588-
* Returns the library's name, {@code google-cloud-java}, as a string.
588+
* Returns the library's name, {@code gcloud-java}, as a string.
589589
*/
590590
@Deprecated
591591
public String libraryName() {
592592
return getLibraryName();
593593
}
594594

595595
/**
596-
* Returns the library's name, {@code google-cloud-java}, as a string.
596+
* Returns the library's name, {@code gcloud-java}, as a string.
597597
*/
598598
public String getLibraryName() {
599599
return LIBRARY_NAME;

branches/tswast-patch-1/google-cloud-core/src/test/java/com/google/cloud/ServiceOptionsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public class ServiceOptionsTest {
102102
private static final TestServiceOptions DEPRECATED_DEFAULT_OPTIONS =
103103
TestServiceOptions.newBuilder().projectId("project-id").build();
104104
private static final TestServiceOptions OPTIONS_COPY = OPTIONS.toBuilder().build();
105-
private static final String LIBRARY_NAME = "google-cloud-java";
105+
private static final String LIBRARY_NAME = "gcloud-java";
106106
private static final Pattern APPLICATION_NAME_PATTERN =
107107
Pattern.compile(LIBRARY_NAME + "(/[0-9]+.[0-9]+.[0-9]+)?");
108108

0 commit comments

Comments
 (0)