cstroe / svndumpapi

A Java library for manipulating a Subversion dump file.
GNU Affero General Public License v3.0
5 stars 1 forks source link

Properly handle UTF-8 log messages (make SvnDumpFileCharStream respect encodings again) #23

Closed cstroe closed 8 years ago

cstroe commented 8 years ago

So, the current implementation of SvnDumpFileCharStream has done away with proper reading of characters. It just reads bytes one at a time, and then converts the byte to a char via casting.

My assumption is that the casting breaks encoding. Make UTF-8 characters in log messages parse properly.

cstroe commented 8 years ago

Fixed in https://github.com/cstroe/svndumpapi/pull/25