I am now debugging ColdBox for BlueDragon 7 and came upon an interesting bug that I cannot find a solution for. I am trying to get an iterator out of a linkedHashMap and BD keeps throwing me a Method hasNext could not be legally accessed. Has anybody experienced this? If so, please help.
Below is the current simple code:
//Create HashMap
LinkedHashMap = CreateObject("java","java.util.LinkedHashMap").init(3);
Collections = createObject("java", "java.util.Collections");
//synch it
LinkedHashMap = Collections.synchronizedMap(LinkedHashMap);
//put some elements
LinkedHashMap.put("name","luis");
LinkedHashMap.put("date",now());
//Iterate
iterator = LinkedHashMap.keySet().iterator();
key = "";
/* Loop and execute each interceptor as registered in order */
while( iterator.hasNext() ){
key = iterator.next();
writeoutput(key & "
");
}
Blog
Recent Entries
Ortus & BoxLang July Recap 2026
July continued to showcase the rapid evolution of the Ortus ecosystem with major BoxLang releases, innovative developer tools, and expanded AI capabilities. From new runtime features and cloud-native integrations to practical learning resources and technical deep dives, this month's highlights reflect Ortus' commitment to building modern, high-performance solutions for the JVM.
The month also featured community initiatives, conference resources, and international events, including CFCa...
Victor Campos
Victor Campos
July
31,
2026
Victor Campos
Victor Campos
July
24,
2026
Maria Jose Herrera
Maria Jose Herrera
July
23,
2026
Add Your Comment