Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.7.0
-
Fix Version/s: 1.6.8, 1.7.1, 1.8-beta-1
-
Component/s: None
-
Labels:None
-
Number of attachments :
Description
Map m = [:]
//this is ok as LinkedHashMap supports null as key and value
m.put(null, null)
//this will throw an exception
m[null] = null
this was found while porting an application from groovy version 1.6.3 to 1.7.0