TEST-ONLY: Creates a configuration instance from an instance directory and file name @param instanceDir the directory used to create the resource loader @param name the configuration name used by the loader if the stream is null
(Path instanceDir, String name)
| 137 | * @param name the configuration name used by the loader if the stream is null |
| 138 | */ |
| 139 | public SolrConfig(Path instanceDir, String name) throws IOException { |
| 140 | this(new SolrResourceLoader(instanceDir), name, null); |
| 141 | } |
| 142 | |
| 143 | public static SolrConfig readFromResourceLoader( |
| 144 | SolrResourceLoader loader, String name, Properties substitutableProperties) { |
nothing calls this directly
no test coverage detected