fixed double quote problem that showed up on some dictionaries (that where pre-processed in excel)
This commit is contained in:
parent
83f5c19a13
commit
4f821b7965
1 changed files with 1 additions and 4 deletions
|
@ -17,9 +17,6 @@ Contributor(s): ______________________________________.
|
||||||
*/
|
*/
|
||||||
package org.thdl.tib.scanner;
|
package org.thdl.tib.scanner;
|
||||||
|
|
||||||
import java.io.*;
|
|
||||||
import org.thdl.util.*;
|
|
||||||
|
|
||||||
/** Miscelaneous static methods for the manipulation of Tibetan text.
|
/** Miscelaneous static methods for the manipulation of Tibetan text.
|
||||||
|
|
||||||
@author Andrés Montano Pellegrini
|
@author Andrés Montano Pellegrini
|
||||||
|
@ -471,7 +468,7 @@ public class Manipulate
|
||||||
if (length>2)
|
if (length>2)
|
||||||
{
|
{
|
||||||
if ((s.charAt(0)=='\"') && (s.charAt(length-1)=='\"'))
|
if ((s.charAt(0)=='\"') && (s.charAt(length-1)=='\"'))
|
||||||
return s.substring(1,length-1);
|
s = s.substring(1,length-1);
|
||||||
|
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue