csvWriter.write(colValueList);
}
catch (IOException e)
{
//Should not happen since string writer doesn't throw I/O errors
throw new PreferencesException(e);
}
String completeValue = buf.toString();
chain.putValue(colKey, completeValue, keyMetadata.withDataType(String.class));
log.debug("Wrote value " + completeValue + " for key " + key);