//{
//return (List<List<SkinStyleSheetNode>>)cached;
//}
// Step 5. Set up the new context; first, clone the original
ParseContext newContext = (ParseContext)context.clone();
// Add the current identifier to the stack (used for detecting circular includes)
// placed on the ParseContext
// cloning ParseContext does a shallow copy. It doesn't copy this list.
if (list == null)
list = new ArrayList<Object>();
else
list = new ArrayList<Object>(list);
list.add(identifier);
newContext.setProperty(_SHARE_NAMESPACE, _INCLUDE_STACK, list);
InputStream stream = importProvider.openInputStream();
try
{