Changeset 231:76de0c5bda8d

Show
Ignore:
Timestamp:
08/31/09 12:00:31 (4 years ago)
Author:
tgambet
Branch:
default
convert_revision:
svn:cdcfb263-7567-472c-a848-e2c2df3466e7/trunk@232
Message:

sets isUcnInitialized boolean

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/org/w3c/unicorn/Framework.java

    r229 r231  
    1 // $Id: Framework.java,v 1.4 2009-08-31 11:35:55 tgambet Exp $ 
     1// $Id: Framework.java,v 1.5 2009-08-31 12:00:31 tgambet Exp $ 
    22// Author: Damien LEROY. 
    33// (c) COPYRIGHT MIT, ERCIM ant Keio, 2006. 
     
    8585         * True if initialization did not throw any exception 
    8686         */ 
    87         public static boolean isUcnInitialized = false; 
     87        public static boolean isUcnInitialized; 
    8888        private static Hashtable<String, Properties> unicornPropertiesFiles; 
    8989        private static Hashtable<String, VelocityContext> languageContexts; 
     
    110110         */ 
    111111        public static void init() { 
     112                isUcnInitialized = false; 
    112113                reset(); 
    113114                try { 
     
    120121                        initLanguages(); 
    121122                        initVelocity(); 
     123                        isUcnInitialized = true; 
    122124                } catch (InitializationFailedException e) { 
    123125                        logger.fatal(e.getMessage(), e);