String name = null;
StringBuffer buffer = new StringBuffer();
while(true) {
try {
name = wcpropsFile.readLine(buffer);
} catch (SVNException e) {
if (e.getErrorMessage().getErrorCode() == SVNErrorCode.STREAM_UNEXPECTED_EOF && buffer.length() > 0) {
SVNErrorMessage err = SVNErrorMessage.create(SVNErrorCode.WC_CORRUPT, "Missing end of line in wcprops file for ''{0}''", getRoot());
SVNErrorManager.error(err, e, SVNLogType.WC);
}