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:
Shalin Shekhar Mangar 2008-08-25 15:15:43 +00:00
parent 668fc13a82
commit 4b98cf8953
1 changed files with 2 additions and 2 deletions

View File

@ -117,7 +117,7 @@ public class CoreDescriptor implements Cloneable {
return coreContainer; return coreContainer;
} }
public Properties getCoreProperties() { Properties getCoreProperties() {
return coreProperties; return coreProperties;
} }
@ -129,7 +129,7 @@ public class CoreDescriptor implements Cloneable {
* *
* @param coreProperties * @param coreProperties
*/ */
public void setCoreProperties(Properties coreProperties) { void setCoreProperties(Properties coreProperties) {
if (this.coreProperties == null) { if (this.coreProperties == null) {
Properties p = initImplicitProperties(); Properties p = initImplicitProperties();
this.coreProperties = new Properties(p); this.coreProperties = new Properties(p);