Changeset 1116

Show
Ignore:
Timestamp:
07/20/08 19:14:31 (3 months ago)
Author:
kris
Message:

fixed copyFile() signature

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/mango/net/servlet/ServletResponse.d

    r1115 r1116  
    213213        ***********************************************************************/ 
    214214 
    215         void copyFile (IServletContext context, char[] path) 
    216         { 
    217                 cacheFile (context, path, null); 
     215        bool copyFile (IServletContext context, char[] path) 
     216        { 
     217                return cacheFile (context, path, null); 
    218218        } 
    219219 
  • trunk/mango/net/servlet/model/IServletResponse.d

    r1115 r1116  
    133133        ***********************************************************************/ 
    134134 
    135         void copyFile (IServletContext context, char[] path); 
     135        bool copyFile (IServletContext context, char[] path); 
    136136 
    137137        /***********************************************************************