[LANG-1168] Add SystemUtils.IS_OS_WINDOWS_10 property.
This commit is contained in:
parent
1e4a490677
commit
031f6b082f
|
@ -22,6 +22,7 @@
|
|||
<body>
|
||||
|
||||
<release version="3.5" date="tba" description="tba">
|
||||
<action issue="LANG-1168" type="add" dev="pschumacher" due-to="pschumacher">Add SystemUtils.IS_OS_WINDOWS_10 property</action>
|
||||
<action issue="LANG-1232" type="fix" dev="pschumacher" due-to="Nick Manley">DiffBuilder: Add null check on fieldName when appending Object or Object[]</action>
|
||||
<action issue="LANG-1178" type="fix" dev="pschumacher" due-to="Henri Yandell">ArrayUtils.removeAll(Object array, int... indices) should do the clone, not its callers</action>
|
||||
<action issue="LANG-1151" type="update" dev="pschumacher" due-to="Juan Pablo Santos Rodríguez">Performance improvements for NumberUtils.isParsable</action>
|
||||
|
|
|
@ -1434,6 +1434,18 @@ public class SystemUtils {
|
|||
*/
|
||||
public static final boolean IS_OS_WINDOWS_8 = getOSMatchesName(OS_NAME_WINDOWS_PREFIX + " 8");
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Is {@code true} if this is Windows 10.
|
||||
* </p>
|
||||
* <p>
|
||||
* The field will return {@code false} if {@code OS_NAME} is {@code null}.
|
||||
* </p>
|
||||
*
|
||||
* @since 3.5
|
||||
*/
|
||||
public static final boolean IS_OS_WINDOWS_10 = getOSMatchesName(OS_NAME_WINDOWS_PREFIX + " 10");
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* Is {@code true} if this is z/OS.
|
||||
|
|
Loading…
Reference in New Issue