mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
Ide, Android: Android builder now can works with higher versions of JDE - Java 1.8 will be forced.
git-svn-id: svn://ultimatepp.org/upp/trunk@16032 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
fbb02d75f3
commit
796fd82dde
2 changed files with 4 additions and 4 deletions
|
|
@ -16,12 +16,12 @@ JavaVersion::JavaVersion(int major, int minor)
|
|||
|
||||
bool JavaVersion::IsGreate(int major) const
|
||||
{
|
||||
return major > mMajor;
|
||||
return mMajor > major;
|
||||
}
|
||||
|
||||
bool JavaVersion::IsGreaterOrEqual(int major) const
|
||||
{
|
||||
return major >= mMajor;
|
||||
return mMajor >= major;
|
||||
}
|
||||
|
||||
bool JavaVersion::IsGreaterOrEqual(int major, int minor) const
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue