--- trunk/libxmltv/Core/XMLTVSerializer.cs 2013/03/08 06:15:44 50 +++ trunk/libxmltv/Core/XMLTVSerializer.cs 2013/03/08 10:19:32 55 @@ -28,7 +28,7 @@ BinaryFormatter bin = new BinaryFormatter(); bin.Serialize(stream, data); } - catch (Exception ex) { xmltv_logger.Log.Error.WriteLine(ex.ToString()); return false; } + catch (Exception ex) { xmltv_logger.Error.WriteLine(ex.ToString()); return false; } return true; } public T DeSerialize(string file, out bool status) @@ -45,7 +45,7 @@ BinaryFormatter bin = new BinaryFormatter(); unpacked_data = (T)bin.Deserialize(stream); } - catch (Exception ex) { xmltv_logger.Log.Error.WriteLine(ex.ToString()); status = false; } + catch (Exception ex) { xmltv_logger.Error.WriteLine(ex.ToString()); status = false; } status = true; return unpacked_data; }