branch: elpa/projectile
commit 098f4b940933b5cebd991d75cae28cdff310ea2f
Author: Bozhidar Batsov <[email protected]>
Commit: Bozhidar Batsov <[email protected]>

    Remove unused function projectile-files-in-project-directory
    
    This function was defined but never called anywhere in the codebase.
---
 projectile.el | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/projectile.el b/projectile.el
index bd16cf4c69..5cd1f13b51 100644
--- a/projectile.el
+++ b/projectile.el
@@ -4816,15 +4816,6 @@ Use a prefix argument ARG to indicate creation of a new 
process instead."
   (interactive "P")
   (projectile--eat arg 'other-window))
 
-(defun projectile-files-in-project-directory (directory)
-  "Return a list of files in DIRECTORY."
-  (let* ((project (projectile-acquire-root))
-         (dir (file-relative-name (expand-file-name directory)
-                                  project)))
-    (seq-filter
-     (lambda (f) (string-prefix-p dir f))
-     (projectile-project-files project))))
-
 (defun projectile-files-from-cmd (cmd directory)
   "Use a grep-like CMD to search for files within DIRECTORY.
 

Reply via email to