getACIP was getting EWTS, not ACIP.

This commit is contained in:
dchandler 2004-04-17 15:49:40 +00:00
parent de3a19761e
commit 63438d243b

View file

@ -379,7 +379,7 @@ public class TibetanDocument extends DefaultStyledDocument {
* these glyphs, then noSuchACIP[0] will be set to true * these glyphs, then noSuchACIP[0] will be set to true
* @return the string of ACIP corresponding to this document */ * @return the string of ACIP corresponding to this document */
public String getACIP(int begin, int end, boolean noSuchACIP[]) { public String getACIP(int begin, int end, boolean noSuchACIP[]) {
return getTranslit(true, begin, end, noSuchACIP); return getTranslit(false, begin, end, noSuchACIP);
} }
private String getTranslit(boolean EWTSNotACIP, int begin, int end, boolean noSuch[]) { private String getTranslit(boolean EWTSNotACIP, int begin, int end, boolean noSuch[]) {