Skip to content

Commit f7bcc75

Browse files
Merge pull request #32829 from handong0123:master
PiperOrigin-RevId: 272227386
1 parent 834d5da commit f7bcc75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tensorflow-core/tensorflow-core-api/src/main/java/org/tensorflow/NativeLibrary.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,12 +169,12 @@ private static String getVersionedLibraryName(String libFilename) {
169169
* determined.
170170
*/
171171
private static String getMajorVersionNumber() {
172-
// getImplementationVersion() retrun null.
172+
// getImplementationVersion() retrun null.
173173
String version = NativeLibrary.class.getPackage().getImplementationVersion();
174174
// expecting a string like 1.14.0, we want to get the first '1'.
175175
int dotIndex;
176176
if (version == null || (dotIndex = version.indexOf('.')) == -1) {
177-
// we want to get the version 1.
177+
// we want to get the version 1.
178178
return "1";
179179
}
180180
String majorVersion = version.substring(0, dotIndex);

0 commit comments

Comments
 (0)