{
String name = parts[i].toRawString();
name = name.replaceAll( "\n", "" );
name = name.replaceAll( "\r", "" );
IAttribute attribute = new Attribute( entry, name );
attribute.addValue( new Value( attribute, parts[i] ) );
entry.addAttribute( attribute );
}
}
EventRegistry.resumeEventFiringInCurrentThread();