[Nice-commit] Nice NEWS,1.58,1.59
Brought to you by:
bonniot
From: Daniel B. <bo...@us...> - 2005-02-11 01:40:06
|
Update of /cvsroot/nice/Nice In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26705 Modified Files: NEWS Log Message: Correctly compare possibly null values with primitive values by unwrapping the possibly null value and performing a native comparison. Wrapping the primitive value and performing reference comparison could return false even with identical values. (fixes #1090679) Index: NEWS =================================================================== RCS file: /cvsroot/nice/Nice/NEWS,v retrieving revision 1.58 retrieving revision 1.59 diff -C2 -d -r1.58 -r1.59 *** NEWS 13 Jan 2005 23:33:00 -0000 1.58 --- NEWS 11 Feb 2005 01:39:37 -0000 1.59 *************** *** 27,31 **** initializers in super classes, visibility checking of java classes, cyclic custom constructors, methods and fields in classes with less type ! parameters, 'this' in custom constructors, ... ) -- --- 27,32 ---- initializers in super classes, visibility checking of java classes, cyclic custom constructors, methods and fields in classes with less type ! parameters, 'this' in custom constructors, comparison of possibly null ! values with primitive values, ... ) -- |