public void loadProperties()
 {
     try
     {
         String propertiesPath = propertiesLocation + "/" + PROPERTIES_FILE;
         FileInputStream propertiesStream = new FileInputStream(propertiesPath);
         loadedProperties.load(propertiesStream);
     }
     catch (IOException e)
     {
         // No properties files means all defaults are loaded
     }
 }
 internal static void load(FileInputStream propertiesStream)
 {
     throw new NotImplementedException();
 }
Exemple #3
0
 internal static void load(FileInputStream propertiesStream)
 {
     throw new NotImplementedException();
 }