Changeset 215

Show
Ignore:
Timestamp:
03/25/08 21:23:47 (8 months ago)
Author:
Stuart Thiel
Message:

-ooooh, case sensitivity coulda been problematic. Not sure if properties check it, but just in case.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • MediAnnotate/trunk/src/org/mediannotate/dom/MediaFactory.java

    r208 r215  
    4646         
    4747        private static String findExtensionFromURL(String url) { 
    48                 return url.substring(url.lastIndexOf('.'))
     48                return url.substring(url.lastIndexOf('.')).toLowerCase()
    4949        } 
    5050