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) {
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 );
You can’t perform that action at this time.
0 commit comments