113114115116117118119
* @param obj Object to write * @throws IOException */ protected void write(Writer writer, Object obj) throws IOException { Intrinsic.write(obj, (m_lMaxCount > 0) ? new LimitWriter(writer, m_lMaxCount) : writer, false); }