SOLR-6899: Make CollectionAdminRequest.action setter protected instead of public

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1648451 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Anshum Gupta 2014-12-30 00:19:25 +00:00
parent 74e318cabd
commit 05e5d89bf7
2 changed files with 4 additions and 2 deletions

View File

@ -367,6 +367,9 @@ Bug Fixes
* SOLR-6873: Lib relative path is incorrect for techproduct configset * SOLR-6873: Lib relative path is incorrect for techproduct configset
(Alexandre Rafalovitch via Erick Erickson) (Alexandre Rafalovitch via Erick Erickson)
* SOLR-6899: Change public setter for CollectionAdminRequest.action to protected.
(Anshum Gupta)
Optimizations Optimizations
---------------------- ----------------------

View File

@ -48,8 +48,7 @@ public class CollectionAdminRequest extends SolrRequest {
private static String PROPERTY_PREFIX = "property."; private static String PROPERTY_PREFIX = "property.";
public void setAction( CollectionAction action ) protected void setAction( CollectionAction action ) {
{
this.action = action; this.action = action;
} }