Author: ggregory
Date: Mon Feb 10 19:12:03 2014
New Revision: 1566705
URL: http://svn.apache.org/r1566705
Log:
<action issue="LANG-966" type="add" dev="ggregory">Add IBM OS/400
detection</action>
Modified:
commons/proper/lang/trunk/src/changes/changes.xml
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/SystemUtils.java
Modified: commons/proper/lang/trunk/src/changes/changes.xml
URL:
http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/changes/changes.xml?rev=1566705&r1=1566704&r2=1566705&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/changes/changes.xml [utf-8] (original)
+++ commons/proper/lang/trunk/src/changes/changes.xml [utf-8] Mon Feb 10
19:12:03 2014
@@ -46,7 +46,7 @@
<action issue="LANG-834" type="add" dev="britter">Validate: add
inclusiveBetween and exclusiveBetween overloads for primitive types</action>
<action issue="LANG-900" type="add" dev="britter" due-to="Duncan
Jones">New RandomUtils class</action>
<action issue="LANG-915" type="fix" dev="britter" due-to="Sergio
Fernández">Wrong locale handling in LocaleUtils.toLocale()</action>
- <action issue="LANG-966" type="add" dev="ggregory">Add IBM iSeries 5 OS
detection</action>
+ <action issue="LANG-966" type="add" dev="ggregory">Add IBM OS/400
detection</action>
</release>
<release version="3.2.1" date="2014-01-05" description="Bug fix for 3.2">
Modified:
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/SystemUtils.java
URL:
http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/SystemUtils.java?rev=1566705&r1=1566704&r2=1566705&view=diff
==============================================================================
---
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/SystemUtils.java
(original)
+++
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/SystemUtils.java
Mon Feb 10 19:12:03 2014
@@ -960,7 +960,7 @@ public class SystemUtils {
/**
* <p>
- * Is {@code true} if this is IBM iSeries 5.
+ * Is {@code true} if this is IBM OS/400.
* </p>
* <p>
* The field will return {@code false} if {@code OS_NAME} is {@code null}.
@@ -968,7 +968,7 @@ public class SystemUtils {
*
* @since 3.3
*/
- public static final boolean IS_OS_ISERIES = getOSMatchesName("OS/400");
+ public static final boolean IS_OS_400 = getOSMatchesName("OS/400");
/**
* <p>