diff options
author | Andreas Zelend <ace20022@xbmc.org> | 2014-08-19 08:34:11 +0200 |
---|---|---|
committer | Andreas Zelend <ace20022@xbmc.org> | 2014-08-19 08:34:11 +0200 |
commit | d3dced2551bfb065973dc9adc202f48fc74c4aee (patch) | |
tree | cdbed38530ec2e3be56c4e72af71f90f78d744ba | |
parent | d9fd6d47344d218df2fdc79198a6ed504f84a095 (diff) | |
parent | 20d5e2153f9b36a6bcfd7351353877d4c21b35c8 (diff) |
Merge pull request #5238 from ace20022/log_blu
[log] Remove unnecessary message about closing files.
-rw-r--r-- | xbmc/cores/dvdplayer/DVDInputStreams/DVDInputStreamBluray.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/xbmc/cores/dvdplayer/DVDInputStreams/DVDInputStreamBluray.cpp b/xbmc/cores/dvdplayer/DVDInputStreams/DVDInputStreamBluray.cpp index 4fb07e39be..6a7d4dc313 100644 --- a/xbmc/cores/dvdplayer/DVDInputStreams/DVDInputStreamBluray.cpp +++ b/xbmc/cores/dvdplayer/DVDInputStreams/DVDInputStreamBluray.cpp @@ -47,8 +47,6 @@ void DllLibbluray::file_close(BD_FILE_H *file) { if (file) { - CLog::Log(LOGDEBUG, "CDVDInputStreamBluray - Closed file (%p)\n", file); - delete static_cast<CFile*>(file->internal); delete file; } |