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 9ab7016 commit 860bb05Copy full SHA for 860bb05
google-http-client/src/main/java/com/google/api/client/http/HttpRequest.java
@@ -1224,7 +1224,8 @@ private static String getVersion() {
1224
// this value should be read and cached for later use
1225
String version = "unknown-version";
1226
try (InputStream inputStream =
1227
- HttpRequest.class.getResourceAsStream("/google-http-client.properties")) {
+ HttpRequest.class.getResourceAsStream(
1228
+ "/com/google/api/client/http/google-http-client.properties")) {
1229
if (inputStream != null) {
1230
final Properties properties = new Properties();
1231
properties.load(inputStream);
google-http-client/src/main/resources/google-http-client.properties renamed to google-http-client/src/main/resources/com/google/api/client/http/google-http-client.properties
0 commit comments