Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26bec5b commit 94f7593Copy full SHA for 94f7593
google-api-client/src/main/java/com/google/api/client/googleapis/GoogleUtils.java
@@ -93,7 +93,8 @@ private static String getVersion() {
93
// this value should be read and cached for later use
94
String version = null;
95
try (InputStream inputStream =
96
- GoogleUtils.class.getResourceAsStream("google-api-client.properties")) {
+ GoogleUtils.class.getResourceAsStream(
97
+ "/com/google/api/client/googleapis/google-api-client.properties")) {
98
if (inputStream != null) {
99
Properties properties = new Properties();
100
properties.load(inputStream);
0 commit comments