Project

General

Profile

Bug #2049

CN Create method fails due to incorrect use of NodeList

Added by Robert Waltz over 12 years ago. Updated over 12 years ago.

Status:
Closed
Priority:
Urgent
Assignee:
Ben Leinfelder
Category:
Metacat
Target version:
Start date:
2011-11-22
Due date:
% Done:

100%

Milestone:
CCI-1.0.0
Product Version:
*
Story Points:
Sprint:

Description

CNodeService.java line 967 reads:
List nodes = (List) cn.listNodes();

cn.listNodes returns a NodeList object, should read:
NodeList nodeList = cn.listNodes();
List nodes = nodeList.getNodeList();

History

#1 Updated by Ben Leinfelder over 12 years ago

  • Assignee changed from Chris Jones to Ben Leinfelder

#2 Updated by Ben Leinfelder over 12 years ago

  • Status changed from New to Closed

updated Metacat source

Also available in: Atom PDF

Add picture from clipboard (Maximum size: 14.8 MB)