-
Bug
-
Resolution: Fixed
-
P5
-
1.4.0
-
None
-
rc1
-
generic
-
generic
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2040632 | 1.4.0 | Dale Mcduffie | P5 | Resolved | Fixed | beta |
Name: dm26566 Date: 02/09/2001
The following line in sanityck can be simplified:
if [ \! \( $v1 -ge 5 -a $v2 -ge 6 \) ]; then echo '
...
to:
if [ $v1 -ne 5 -o $v2 -lt 6 ]; then echo '
...
======================================================================
- backported by
-
JDK-2040632 sanityck testing Solaris version number can be simplified
-
- Resolved
-