mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-85 fix error logging one more time
X-SVN-Rev: 6174
This commit is contained in:
parent
f9d862447b
commit
3e366a9596
2 changed files with 6 additions and 6 deletions
|
@ -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) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue