Kaydet (Commit) e6bc67af authored tarafından Caolán McNamara's avatar Caolán McNamara

WaE: unused variable

üst 76c7fa90
...@@ -949,8 +949,6 @@ namespace ...@@ -949,8 +949,6 @@ namespace
return ::rtl::OUString(); return ::rtl::OUString();
} }
void TypeDetection::impl_seekStreamToZero(comphelper::MediaDescriptor& rDescriptor) void TypeDetection::impl_seekStreamToZero(comphelper::MediaDescriptor& rDescriptor)
{ {
// try to seek to 0 ... // try to seek to 0 ...
...@@ -965,15 +963,16 @@ void TypeDetection::impl_seekStreamToZero(comphelper::MediaDescriptor& rDescript ...@@ -965,15 +963,16 @@ void TypeDetection::impl_seekStreamToZero(comphelper::MediaDescriptor& rDescript
{ {
xSeek->seek(0); xSeek->seek(0);
} }
catch(const css::uno::RuntimeException& exRun) catch(const css::uno::RuntimeException&)
{ throw; } {
throw;
}
catch(const css::uno::Exception&) catch(const css::uno::Exception&)
{} {
}
} }
} }
::rtl::OUString TypeDetection::impl_askDetectService(const ::rtl::OUString& sDetectService, ::rtl::OUString TypeDetection::impl_askDetectService(const ::rtl::OUString& sDetectService,
::comphelper::MediaDescriptor& rDescriptor ) ::comphelper::MediaDescriptor& rDescriptor )
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment