File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed 
library/src/main/java/com/loopj/android/http Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -52,8 +52,8 @@ public FileAsyncHttpResponseHandler(File file) {
5252     */ 
5353    public  FileAsyncHttpResponseHandler (File  file , boolean  append ) {
5454        super ();
55-         AssertUtils .asserts (file  != null , "File passed into FileAsyncHttpResponseHandler constructor must not be null" );
56-         AssertUtils .asserts (file .getParentFile ().mkdirs (), "Cannot create parent directories for requested File location" );
55+         Utils .asserts (file  != null , "File passed into FileAsyncHttpResponseHandler constructor must not be null" );
56+         Utils .asserts (file .getParentFile ().mkdirs (), "Cannot create parent directories for requested File location" );
5757        this .mFile  = file ;
5858        this .append  = append ;
5959    }
@@ -85,7 +85,7 @@ public boolean deleteTargetFile() {
8585     * @return temporary file or null if creating file failed 
8686     */ 
8787    protected  File  getTemporaryFile (Context  context ) {
88-         AssertUtils .asserts (context  != null , "Tried creating temporary file without having Context" );
88+         Utils .asserts (context  != null , "Tried creating temporary file without having Context" );
8989        try  {
9090            // not effective in release mode 
9191            assert  context  != null ;
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments