You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2013/11/28 04:39:37 UTC

svn commit: r1546267 - /commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/HostFileNameParser.java

Author: ggregory
Date: Thu Nov 28 03:39:36 2013
New Revision: 1546267

URL: http://svn.apache.org/r1546267
Log:
Overriding method merely calls super.

Modified:
    commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/HostFileNameParser.java

Modified: commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/HostFileNameParser.java
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/HostFileNameParser.java?rev=1546267&r1=1546266&r2=1546267&view=diff
==============================================================================
--- commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/HostFileNameParser.java (original)
+++ commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/HostFileNameParser.java Thu Nov 28 03:39:36 2013
@@ -44,12 +44,6 @@ public class HostFileNameParser extends 
     }
 
     @Override
-    public boolean encodeCharacter(final char ch)
-    {
-        return super.encodeCharacter(ch);
-    }
-
-    @Override
     public FileName parseUri(final VfsComponentContext context, final FileName base, final String filename)
             throws FileSystemException
     {