fixed little bug in Java I/O Stream

This commit is contained in:
2023-09-28 15:35:05 +08:00
parent 416e96c169
commit 09d9678e11
2 changed files with 3 additions and 3 deletions

View File

@@ -63,7 +63,7 @@ namespace hgl
bool readUTF (UTF16String &str)
{
return in?in->ReadUTF8ShortString(str);
return in?in->ReadUTF8ShortString(str):false;
}
};//class JavaInputStream
}//namespace io