ICU-85 fix error logging one more time

X-SVN-Rev: 6174
This commit is contained in:
Doug Felt 2001-10-10 21:50:55 +00:00
parent f9d862447b
commit 3e366a9596
2 changed files with 6 additions and 6 deletions

View file

@ -5,8 +5,8 @@
*******************************************************************************
*
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/dev/test/TestFmwk.java,v $
* $Date: 2001/10/08 16:22:47 $
* $Revision: 1.17 $
* $Date: 2001/10/10 21:50:55 $
* $Revision: 1.18 $
*
*****************************************************************************************
*/
@ -277,7 +277,7 @@ public class TestFmwk implements TestLog {
}
private static final boolean isPrintable(int c) {
return c == '\t' || c == '\n' || (c >= '\u0020' && c <= '\u007e');
return (c >= '\u0020' && c <= '\u007e') || c == '\t' || c == '\r' || c == '\n';
}
private final void writePrintable(int c) {

View file

@ -5,8 +5,8 @@
*******************************************************************************
*
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/test/Attic/TestFmwk.java,v $
* $Date: 2001/10/08 16:22:47 $
* $Revision: 1.17 $
* $Date: 2001/10/10 21:50:55 $
* $Revision: 1.18 $
*
*****************************************************************************************
*/
@ -277,7 +277,7 @@ public class TestFmwk implements TestLog {
}
private static final boolean isPrintable(int c) {
return c == '\t' || c == '\n' || (c >= '\u0020' && c <= '\u007e');
return (c >= '\u0020' && c <= '\u007e') || c == '\t' || c == '\r' || c == '\n';
}
private final void writePrintable(int c) {