You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
argument type should be Class<? extends PropertiesLoader> propertiesLoader, instead of Class< PropertiesLoader> propertiesLoader. Right now, no subclass of PropertiesLoader can be passed to the constructor.
The text was updated successfully, but these errors were encountered:
I think the 3rd constructor should be:
public ArchaiusBootstrapModule(Class<? extends PropertiesLoader> propertiesLoader) { this.propertiesLoaderClass = propertiesLoader; this.propertiesLoader = null; }
argument type should be Class<? extends PropertiesLoader> propertiesLoader, instead of Class< PropertiesLoader> propertiesLoader. Right now, no subclass of PropertiesLoader can be passed to the constructor.
The text was updated successfully, but these errors were encountered: