mirror of https://github.com/apache/lucene.git
SOLR-724 -- Making the get/set coreProperties method package private to insulate the public API from future changes.
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@688751 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
668fc13a82
commit
4b98cf8953
|
@ -117,7 +117,7 @@ public class CoreDescriptor implements Cloneable {
|
|||
return coreContainer;
|
||||
}
|
||||
|
||||
public Properties getCoreProperties() {
|
||||
Properties getCoreProperties() {
|
||||
return coreProperties;
|
||||
}
|
||||
|
||||
|
@ -129,7 +129,7 @@ public class CoreDescriptor implements Cloneable {
|
|||
*
|
||||
* @param coreProperties
|
||||
*/
|
||||
public void setCoreProperties(Properties coreProperties) {
|
||||
void setCoreProperties(Properties coreProperties) {
|
||||
if (this.coreProperties == null) {
|
||||
Properties p = initImplicitProperties();
|
||||
this.coreProperties = new Properties(p);
|
||||
|
|
Loading…
Reference in New Issue