Author: sebb
Date: Mon Nov  8 01:38:33 2010
New Revision: 1032440

URL: http://svn.apache.org/viewvc?rev=1032440&view=rev
Log:
Fix up generics

Modified:
    
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs/impl/VFSClassLoader.java

Modified: 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs/impl/VFSClassLoader.java
URL: 
http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs/impl/VFSClassLoader.java?rev=1032440&r1=1032439&r2=1032440&view=diff
==============================================================================
--- 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs/impl/VFSClassLoader.java
 (original)
+++ 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs/impl/VFSClassLoader.java
 Mon Nov  8 01:38:33 2010
@@ -164,7 +164,7 @@ public class VFSClassLoader extends Secu
      * @throws ClassNotFoundException if the class is not found.
      */
     @Override
-    protected Class findClass(final String name) throws ClassNotFoundException
+    protected Class<?> findClass(final String name) throws 
ClassNotFoundException
     {
         try
         {
@@ -185,7 +185,7 @@ public class VFSClassLoader extends Secu
     /**
      * Loads and verifies the class with name and located with res.
      */
-    private Class defineClass(final String name, final Resource res)
+    private Class<?> defineClass(final String name, final Resource res)
         throws IOException
     {
         final URL url = res.getCodeSourceURL();


Reply via email to