File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tensorflow-core/tensorflow-core-api/src/main/java/org/tensorflow Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -169,12 +169,12 @@ private static String getVersionedLibraryName(String libFilename) {
169
169
* determined.
170
170
*/
171
171
private static String getMajorVersionNumber () {
172
- // getImplementationVersion() retrun null.
172
+ // getImplementationVersion() retrun null.
173
173
String version = NativeLibrary .class .getPackage ().getImplementationVersion ();
174
174
// expecting a string like 1.14.0, we want to get the first '1'.
175
175
int dotIndex ;
176
176
if (version == null || (dotIndex = version .indexOf ('.' )) == -1 ) {
177
- // we want to get the version 1.
177
+ // we want to get the version 1.
178
178
return "1" ;
179
179
}
180
180
String majorVersion = version .substring (0 , dotIndex );
You can’t perform that action at this time.
0 commit comments