Changeset 208

Show
Ignore:
Timestamp:
03/24/08 07:46:47 (10 months ago)
Author:
Stuart Thiel
Message:

-Trivial fix, added some debug code to indicate what type was loaded from MediaFactory?

Files:

Legend:

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

    r203 r208  
    2828                try { 
    2929                        String className = ResourceBundle.getBundle("MyResources").getString(getOS()+extension); 
     30                        System.out.println("Loading Media as: " + className); 
    3031                        return (Media) Class.forName(className).getConstructor(String.class).newInstance(media_url); 
    3132                } catch (Exception e) { 
     
    3435 
    3536        } 
    36          
    37          
    3837         
    3938        private static String getOS() {