fixed double quote problem that showed up on some dictionaries (that where pre-processed in excel)

This commit is contained in:
amontano 2005-04-25 09:29:39 +00:00
parent 83f5c19a13
commit 4f821b7965
1 changed files with 1 additions and 4 deletions

View File

@ -17,9 +17,6 @@ Contributor(s): ______________________________________.
*/
package org.thdl.tib.scanner;
import java.io.*;
import org.thdl.util.*;
/** Miscelaneous static methods for the manipulation of Tibetan text.
@author Andrés Montano Pellegrini
@ -471,7 +468,7 @@ public class Manipulate
if (length>2)
{
if ((s.charAt(0)=='\"') && (s.charAt(length-1)=='\"'))
return s.substring(1,length-1);
s = s.substring(1,length-1);
do
{