mirror of https://github.com/apache/openjpa.git
* Fixed bad return value in DBDictionary.getMinorVersion() (#61)
This commit is contained in:
parent
beb125500f
commit
26b1f6be28
|
@ -5999,7 +5999,7 @@ public class DBDictionary
|
|||
* Gets minor version of the database server.
|
||||
*/
|
||||
public final int getMinorVersion() {
|
||||
return major;
|
||||
return minor;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue