From 289744e2fb9703d67ebc00c8c5c126a9d54f8823 Mon Sep 17 00:00:00 2001 From: Ram Viswanadha Date: Thu, 31 Jan 2002 03:00:29 +0000 Subject: [PATCH] ICU-1678 change the package name for myLocaleElements X-SVN-Rev: 7540 --- icu4j/src/com/ibm/icu/dev/tool/localeconverter/Lex.java | 8 ++++++-- icu4j/src/com/ibm/tools/localeconverter/Lex.java | 8 ++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/icu4j/src/com/ibm/icu/dev/tool/localeconverter/Lex.java b/icu4j/src/com/ibm/icu/dev/tool/localeconverter/Lex.java index 779f7bce774..ae86fe835c9 100755 --- a/icu4j/src/com/ibm/icu/dev/tool/localeconverter/Lex.java +++ b/icu4j/src/com/ibm/icu/dev/tool/localeconverter/Lex.java @@ -5,8 +5,8 @@ ******************************************************************************* * * $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/dev/tool/localeconverter/Lex.java,v $ - * $Date: 2002/01/31 01:21:32 $ - * $Revision: 1.1 $ + * $Date: 2002/01/31 03:00:29 $ + * $Revision: 1.2 $ * ***************************************************************************************** */ @@ -179,6 +179,8 @@ public final class Lex { */ public void accept(final int neededState) throws IOException { if (neededState != nextToken()) { + Exception e = new Exception(); + e.printStackTrace(); throw new ParseException("Unexpected token - "+getData()); } } @@ -192,6 +194,8 @@ public final class Lex { public void accept(final int neededState, final String neededValue) throws IOException { accept(neededState); if (!dataEquals(neededValue)) { + Exception e = new Exception(); + e.printStackTrace(); throw new ParseException("Unexpected token - "+getData()); } } diff --git a/icu4j/src/com/ibm/tools/localeconverter/Lex.java b/icu4j/src/com/ibm/tools/localeconverter/Lex.java index 84e1ebd3980..9549baf86e8 100755 --- a/icu4j/src/com/ibm/tools/localeconverter/Lex.java +++ b/icu4j/src/com/ibm/tools/localeconverter/Lex.java @@ -5,8 +5,8 @@ ******************************************************************************* * * $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/tools/localeconverter/Attic/Lex.java,v $ - * $Date: 2002/01/31 01:21:32 $ - * $Revision: 1.1 $ + * $Date: 2002/01/31 03:00:29 $ + * $Revision: 1.2 $ * ***************************************************************************************** */ @@ -179,6 +179,8 @@ public final class Lex { */ public void accept(final int neededState) throws IOException { if (neededState != nextToken()) { + Exception e = new Exception(); + e.printStackTrace(); throw new ParseException("Unexpected token - "+getData()); } } @@ -192,6 +194,8 @@ public final class Lex { public void accept(final int neededState, final String neededValue) throws IOException { accept(neededState); if (!dataEquals(neededValue)) { + Exception e = new Exception(); + e.printStackTrace(); throw new ParseException("Unexpected token - "+getData()); } }