diff options
Diffstat (limited to 'libjava/java/io/FileFilter.java')
| -rw-r--r-- | libjava/java/io/FileFilter.java | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/libjava/java/io/FileFilter.java b/libjava/java/io/FileFilter.java index de6feb1aea8..916a31f2ee6 100644 --- a/libjava/java/io/FileFilter.java +++ b/libjava/java/io/FileFilter.java @@ -52,7 +52,6 @@ package java.io; */ public interface FileFilter { - /** * This method determines whether or not a given pathname should be included * in a pathname listing. @@ -62,7 +61,5 @@ public interface FileFilter * @return <code>true</code> if the path should be included in the list, * <code>false</code> otherwise. */ - public abstract boolean accept(File pathname); - -} // interface FileFilter - + boolean accept(File pathname); +} |
