Skip to content

Commit fb731ea

Browse files
authored
Update GaxProperties.java
1 parent f92bd38 commit fb731ea

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

sdk-platform-java/gax-java/gax/src/main/java/com/google/api/gax/core/GaxProperties.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,14 @@ private GaxProperties() {}
5757
/** Returns the version of the library that the {@code libraryClass} belongs to */
5858
public static String getLibraryVersion(Class<?> libraryClass) {
5959
String version = libraryClass.getPackage().getImplementationVersion();
60-
System.out.println(version);
6160
return version != null ? version : DEFAULT_VERSION;
6261
}
6362

6463
/**
6564
* Returns the version of the library that the {@code libraryClass} belongs to, or a property
6665
* value in dependencies.properties resource file instead, if the version was not found. The
6766
* method is doing I/O operations and is potentially inefficient, the values returned by this
68-
* method are expected to be cached.
67+
* method are expected to be cachedd.
6968
*/
7069
public static String getLibraryVersion(Class<?> libraryClass, String propertyName) {
7170
String version = null;

0 commit comments

Comments
 (0)