diff options
author | Shevek <[email protected]> | 2008-06-06 20:59:48 +0000 |
---|---|---|
committer | Shevek <[email protected]> | 2008-06-06 20:59:48 +0000 |
commit | 38d3f08b4a7302c4a1578c867bdfa3d8a57cd8f9 (patch) | |
tree | a199019c10a43cf6479489343a4cab57565b4897 /src/java/org/anarres/cpp/ChrootFileSystem.java | |
parent | 8e947d8355d4d7199505eb4c7fa88c46bc8c99a7 (diff) |
change return types on VFS methods
Diffstat (limited to 'src/java/org/anarres/cpp/ChrootFileSystem.java')
-rw-r--r-- | src/java/org/anarres/cpp/ChrootFileSystem.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/java/org/anarres/cpp/ChrootFileSystem.java b/src/java/org/anarres/cpp/ChrootFileSystem.java index fda0463..4fedb71 100644 --- a/src/java/org/anarres/cpp/ChrootFileSystem.java +++ b/src/java/org/anarres/cpp/ChrootFileSystem.java @@ -31,11 +31,11 @@ public class ChrootFileSystem implements VirtualFileSystem { this.root = root; } - public ChrootFile getFile(String path) { + public VirtualFile getFile(String path) { return new ChrootFile(path); } - public ChrootFile getFile(String dir, String name) { + public VirtualFile getFile(String dir, String name) { return new ChrootFile(dir, name); } |