A few minor bugfixes and improvements

git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@174 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
henrikjust 2014-09-17 07:32:31 +00:00
parent 5d82772d91
commit 2fd6ccd490
35 changed files with 129 additions and 111 deletions

View file

@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
* Copyright: 2002 by Henrik Just
* Copyright: 2002-2014 by Henrik Just
*
* All Rights Reserved.
*
* Version 0.4 (2004-08-10)
* Version 1.4 (2014-09-16)
*
*/
@ -31,7 +31,7 @@ public class CSVList{
private String sSep;
private String sNameValueSep;
private boolean bEmpty = true;
private StringBuffer buf = new StringBuffer();
private StringBuilder buf = new StringBuilder();
public CSVList(String sSep, String sNameValueSep) {
this.sSep=sSep;