In fact, Nicolas, this is no more needed :)

svn-id: r9584
This commit is contained in:
Chris Apers 2003-08-07 14:33:38 +00:00
parent 7d19b48670
commit d910e7b066
2 changed files with 0 additions and 17 deletions

View file

@ -717,17 +717,6 @@ void Serializer::loadBytes(void *b, int len) {
_saveLoadStream->fread(b, 1, len);
}
#if defined(__PALM_OS__)
bool Serializer::checkEOFLoadStream() {
if (_saveLoadStream->feof())
return true;
return false;
}
#endif
void Serializer::saveUint32(uint32 d) {
uint32 e = FROM_LE_32(d);
saveBytes(&e, 4);