Remove unused function declaration

Signed-off-by: Felix Weilbach <felix.weilbach@nextcloud.com>
This commit is contained in:
Felix Weilbach 2021-06-15 14:43:27 +02:00 committed by Felix Weilbach (Rebase PR Action)
parent 6e41875fe1
commit 27f8152b05
2 changed files with 1 additions and 4 deletions

View file

@ -982,7 +982,7 @@ void FakeFolder::fromDisk(QDir &dir, FileInfo &templateFi)
}
}
FileInfo &findOrCreateDirs(FileInfo &base, PathComponents components)
static FileInfo &findOrCreateDirs(FileInfo &base, PathComponents components)
{
if (components.isEmpty())
return base;

View file

@ -486,9 +486,6 @@ private:
static void fromDisk(QDir &dir, FileInfo &templateFi);
};
static FileInfo &findOrCreateDirs(FileInfo &base, PathComponents components);
/* Return the FileInfo for a conflict file for the specified relative filename */
inline const FileInfo *findConflict(FileInfo &dir, const QString &filename)
{