* Fixed bad return value in DBDictionary.getMinorVersion() (#61)

This commit is contained in:
NeMuX 2020-04-21 21:14:22 -05:00 committed by GitHub
parent beb125500f
commit 26b1f6be28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -5999,7 +5999,7 @@ public class DBDictionary
* Gets minor version of the database server.
*/
public final int getMinorVersion() {
return major;
return minor;
}
/**