Changeset 411

Show
Ignore:
Timestamp:
10/10/08 15:15:43 (3 months ago)
Author:
scooter.p..@gmail.com
Message:

Scott Michel:
Minor cleanups.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • jasko.tim.lisp/src/jasko/tim/lisp/swank/LispImplementation.java

    r410 r411  
    3030         
    3131        public static boolean isCompilerOutput(String lispFile) { 
    32                 boolean result = false; 
    33                 for (int i = 0; i < compilerOutputs.length && !result; ++i) { 
    34                         if (lispFile.endsWith(compilerOutputs[i])) 
    35                                 result = true; 
     32                for (String extension : compilerOutputs) { 
     33                        if (lispFile.endsWith(extension)) 
     34                                return true; 
    3635                } 
    37                 return result
     36                return false
    3837        } 
    3938        /**