Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
medialibrary
Commits
00a6145a
Commit
00a6145a
authored
Mar 15, 2016
by
Hugo Beauzée-Luyssen
Browse files
fs: Factory: Remove useless user defined constructor
parent
0dc6a04f
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/factory/FileSystem.cpp
View file @
00a6145a
...
...
@@ -39,10 +39,6 @@
namespace
factory
{
FileSystemFactory
::
FileSystemFactory
()
{
}
std
::
shared_ptr
<
fs
::
IDirectory
>
FileSystemFactory
::
createDirectory
(
const
std
::
string
&
path
)
{
std
::
lock_guard
<
std
::
mutex
>
lock
(
m_mutex
);
...
...
src/factory/FileSystem.h
View file @
00a6145a
...
...
@@ -33,7 +33,6 @@ namespace factory
class
FileSystemFactory
:
public
IFileSystem
{
public:
FileSystemFactory
();
virtual
std
::
shared_ptr
<
fs
::
IDirectory
>
createDirectory
(
const
std
::
string
&
path
)
override
;
virtual
std
::
shared_ptr
<
fs
::
IDevice
>
createDevice
(
const
std
::
string
&
uuid
)
override
;
virtual
void
refresh
()
override
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment