-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #395 from lmagyar/pr-refactor-filesystem
File-system refactor - plus minor bugfixes
- Loading branch information
Showing
45 changed files
with
1,017 additions
and
901 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
primitiveFTPd/src/org/primftpd/filesystem/AbstractFileSystemView.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package org.primftpd.filesystem; | ||
|
||
import org.primftpd.services.PftpdService; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
public abstract class AbstractFileSystemView { | ||
|
||
protected final Logger logger = LoggerFactory.getLogger(getClass()); | ||
|
||
protected final PftpdService pftpdService; | ||
|
||
public AbstractFileSystemView(PftpdService pftpdService) { | ||
this.pftpdService = pftpdService; | ||
} | ||
|
||
public final PftpdService getPftpdService() { | ||
return pftpdService; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.