diff options
Diffstat (limited to 'libjava/java/net/FileNameMap.java')
-rw-r--r-- | libjava/java/net/FileNameMap.java | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/libjava/java/net/FileNameMap.java b/libjava/java/net/FileNameMap.java index c6c50000c77..fbc6059c564 100644 --- a/libjava/java/net/FileNameMap.java +++ b/libjava/java/net/FileNameMap.java @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -35,15 +35,14 @@ this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ - package java.net; + /** * Written using on-line Java Platform 1.2 API Specification, as well * as "The Java Class Libraries", 2nd edition (Addison-Wesley, 1998). * Status: Believed complete and correct. */ - /** * This interface has one method which, when passed a filename, returns * the MIME type associated with that filename. @@ -63,6 +62,4 @@ public interface FileNameMap * @return The MIME type for the filename passed in. */ String getContentTypeFor(String filename); - } // interface FileNameMap - |